-
-
Notifications
You must be signed in to change notification settings - Fork 180
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
Cannot access ambient const enums when 'isolatedModules' is enabled. #539
Comments
Hmm, what's the fix? I don't use |
Hi there, I'm also encountering this issue, both in my source code when e.g. checking the
But more importantly when running tests with Jest, tests of code involving
From what I could gather, the official recommendation from TypeScript is to completely avoid the use of const enums, including publishing ambient const enums: https://blog.beraliv.dev/2022-09-10-with-or-without-enums#ambient-const-enum-pitfalls. Perhaps it would be worth considering converting RuleType to a simple object instead of an enum? Thanks for this library, it's really great that it's so small! |
Yeah, I think that's the way to go. Would you be interested in submitting a PR? Have a bunch of life stuff going on atm so not sure when I will be able to work on this. |
Hello @quantizor, sure I can take a look, also quite busy but I think it could be worth it! I'll try to tackle it in the coming weeks and keep you updated on my progress. |
Hi there @quantizor, sorry for the long wait, but I finally had some time to look into refactoring the It would be great if you could have a look, the changes are fairly minor and should not impact the usage of the library at all. Let me know what you think, I hope this approach makes sense and can make the library easier to integrate with different bundling setups. |
* refactor: replace RuleType enum with a const & export it in index.cjs.tsx * chore: add changeset * chore: fix build --------- Co-authored-by: Evan Jacobs <[email protected]>
You currently cannot use
RuleType
in any conditions if you haveisolatedModules
enabled.The text was updated successfully, but these errors were encountered: