We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In deno 1.5 we switched our bundler from TSC to SWC, which lead to quite a few problems, this issue is for tracking of them.
deno 1.5
deno bundle
deno compile
export { foo }
import * as foo from "..."
The text was updated successfully, but these errors were encountered:
Almost all issues were resolved in 1.6.3.
1.6.3
Sorry, something went wrong.
No branches or pull requests
In
deno 1.5
we switched our bundler from TSC to SWC, which lead to quite a few problems, this issue is for tracking of them.deno bundle
/deno compile
can produce invalid syntax (context-dependent keywords as identifiers) #8680export { foo }
#8626import * as foo from "..."
#8625The text was updated successfully, but these errors were encountered: