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
Probably is a configuration problem in my project
But I get this error: Module not found: Error: Package path . is not exported from package <somePath>/node_modules/helia (see exports field in <somePath>/node_modules/helia/package.json)
Is there a possibility this package is not in the standard format at the browsers expect webpack. (I'm using a relative complex pipeline so I'm unable to easy change it)
The text was updated successfully, but these errors were encountered:
This will not work because ./dist/src/index.js is an ESM module and adding "require" to the exports map will cause it to be required, and you cannot require ESM modules.
You need to configure your project to use ESM, or you need to use dynamic imports but also ensure your project is not transpiling those to require behind your back.
Probably is a configuration problem in my project
But I get this error:
Module not found: Error: Package path . is not exported from package <somePath>/node_modules/helia (see exports field in <somePath>/node_modules/helia/package.json)
Is there a possibility this package is not in the standard format at the browsers expect webpack. (I'm using a relative complex pipeline so I'm unable to easy change it)
The text was updated successfully, but these errors were encountered: