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
Given tsconfig.json similar to
{ "compilerOptions": { "baseUrl": "src", "paths": { "@src/*": ["./*"] } }
This works:
// src/index.ts import {some_enum} from '@src/some_enum'; import {some_class} from '@src/some_class'; export {some_enum, some_class};
This does not work:
export * from '@src/some_enum' export * from '@src/some_class'
Bug looks to be in backend/transformers/paths.ts
....if (ts.isImportDeclaration(child)) { // This returns false, but we need to engage in name mangling here
The text was updated successfully, but these errors were encountered:
This has been fixed in the dev version (parcel-plugin-typescript@next), could you try it?
parcel-plugin-typescript@next
parcel-plugin-typescript/src/backend/transformers/paths.ts
Lines 55 to 60 in 8aeb184
Sorry, something went wrong.
@fathyb This seems to be broken again currently.
No branches or pull requests
Given tsconfig.json similar to
This works:
This does not work:
Bug looks to be in backend/transformers/paths.ts
The text was updated successfully, but these errors were encountered: