You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a package that uses ESM + relative imports without .js extension, ex:
export*from'./utils'
ncc will think that it can't find utils and produce eval("require")("./utils"), resulting in "ReferenceError: require is not defined in ES module scope".
The text was updated successfully, but these errors were encountered:
If you have a package that uses ESM + relative imports without .js extension, ex:
ncc will think that it can't find utils and produce
eval("require")("./utils")
, resulting in "ReferenceError: require is not defined in ES module scope".The text was updated successfully, but these errors were encountered: