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
babel exports/imported-types/input.ts
import type A from "A"; import type { B } from "B"; import C from "C"; export { A, B, C } // <-- A and B will be removed
is transformed to
export { C };
after ModuleRecord is removed, add_export_flag_for_export_identifier should not depend on ModulreRecord.
ModuleRecord
add_export_flag_for_export_identifier
ModulreRecord
The text was updated successfully, but these errors were encountered:
ExportNamedDeclaration
feat(ast)!: add IdentifierReference to ExportSpecifier
IdentifierReference
ExportSpecifier
0d3b5e9
closes #3795 closes #3796
7816e4c
feat(ast)!: add IdentifierReference to ExportSpecifier (#3820)
4456034
Boshen
Successfully merging a pull request may close this issue.
babel exports/imported-types/input.ts
is transformed to
after
ModuleRecord
is removed,add_export_flag_for_export_identifier
should not depend onModulreRecord
.The text was updated successfully, but these errors were encountered: