Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeScript modules are not transpiled #7

Closed
mnaoumov opened this issue Jan 5, 2024 · 0 comments · Fixed by #8
Closed

TypeScript modules are not transpiled #7

mnaoumov opened this issue Jan 5, 2024 · 0 comments · Fixed by #8
Labels
bug Something isn't working

Comments

@mnaoumov
Copy link
Contributor

mnaoumov commented Jan 5, 2024

Consider

!Scripts/test.ts

export function sayHello(name: string) {
  console.log(`hello ${name}`);
}

and invoke from the Developer Tools console

const test = await self.require.import("!Scripts/test.ts");

getting the following error

Uncaught SyntaxError: Unexpected token ':' (at b5a75570-0ba1-44db-bdce-bba3945b3b6f:1:265)

The error occurred because the TypeScript code wasn't transpiled and used as it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants