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
a.ts
export used = 0;
b.ts
export function dynamicallyLoadA() { return import("./a"); }
c.ts
import { dynamicallyLoadA } from "./b"; dynamicallyLoadA().then(A => { console.log(A.used); });
A.used is not marked as used
A.used
The text was updated successfully, but these errors were encountered:
This is another example of #144
Sorry, something went wrong.
Marking as enhancement, as it's a known limitation of the current approach.
Thanks for pointing it out though
@mrseanryan If this package were to change approach, how would it be possible to detect this or even more complex code than this?
No branches or pull requests
a.ts
b.ts
c.ts
A.used
is not marked as usedThe text was updated successfully, but these errors were encountered: