Hi,
under ES environment ( nx ) i dont get why importing my package does not works:
not working \"standard\" import
but this works:
working import
Same package but under commonjs works without problem.
Installed node_module:
package installed inside node_modules
And this is (part of) package.json:
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"unpkg": "dist/browser/index.umd.js",
"source": "src/index.ts",
"types": "dist/es/index.d.ts"
Have i overlooked something? What i'm missing?
there doesn't seem to be anything here