After install with npm install gridjs gridjs-svelte I've got the next error:
_Module not found: Error: Package path . is not exported from package /node_modules/gridjs (see exports field in /nodemodules/gridjs/package.json)
Did you mean './gridjs'?
Requests that should resolve in the current directory need to start with './'.
Versions of gridjs and gridjs-svelte:
"gridjs": "^6.0.6",
"gridjs-svelte": "^2.1.1",
The next import is the source of error (inside of the svelte component):
After install with npm install gridjs gridjs-svelte I've got the next error:
_Module not found: Error: Package path . is not exported from package /node_modules/gridjs (see exports field in /nodemodules/gridjs/package.json) Did you mean './gridjs'? Requests that should resolve in the current directory need to start with './'.
Versions of gridjs and gridjs-svelte: "gridjs": "^6.0.6", "gridjs-svelte": "^2.1.1",
The next import is the source of error (inside of the svelte component):
import Grid from "gridjs-svelte";