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
resolve
e.g. export var x need to expand and codegen to var x_1; export { x_1 as x }
export var x
var x_1; export { x_1 as x }
forms to check:
export { x }
export { x } from 'm'
The text was updated successfully, but these errors were encountered:
Do not resolve exportedNames; fixes #722
d284a0c
a61e16f
Do not resolve exportedNames; fixes #722 (#723)
9846d67
disnet
No branches or pull requests
e.g.
export var x
need to expand and codegen tovar x_1; export { x_1 as x }
forms to check:
export var x
export { x }
export { x } from 'm'
The text was updated successfully, but these errors were encountered: