-
Notifications
You must be signed in to change notification settings - Fork 25
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
Multiple const mod =
definitions?
#136
Comments
Ok, I believe I tracked this down to an issue with Consider three files: export class A {} export class B {} import * as m1 from './multi-mod.A.ts';
import * as m2 from './multi-mod.B.ts';
const { A } = m1;
const { B } = m2;
eval(''); If you If you remove |
As a workaround for anyone else running into this issue: you can replace |
There's a separate but related bug if you export the name |
I'm bundling up some files and ending up with several definitions of
const mod
. Sometimes its a function that returns the exports from an imported module, and other times it's the exports directly. Is this a known issue, and if so, is there any workaround?The text was updated successfully, but these errors were encountered: