babel-plugin-explicit-exports-references
babel-plugin-explicit-exports-references copied to clipboard
Breaks ES Modules
When transpiling to ES Modules (including setting "type": "module"
in package.json) this breaks Jest tests with the error:
ReferenceError: module is not defined
It seems it doesn't take the targeted build type into account and just assumes it's building CommonJS modules. I know the options are limited and I'm not certain what the best solution is, but since ES Module adoption is only increasing it would be nice to have the option to not produce a broken build with Jest. Just wanted to at least raise the issue for consideration.
Thanks for this! ESM has different rules (like module
and exports
not being available) but there may be a solution. I'll take a look.