diff --git a/epicshop/.npmrc b/epicshop/.npmrc new file mode 100644 index 00000000..668efa17 --- /dev/null +++ b/epicshop/.npmrc @@ -0,0 +1,2 @@ +legacy-peer-deps=true +registry=https://registry.npmjs.org/ diff --git a/package.json b/package.json index 353f1e3b..3c1ea7cf 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "type": "module", "imports": { - "#*": "./*" + "#shared/*": "./shared/*" }, "scripts": { "postinstall": "cd ./epicshop && npm install", diff --git a/tsconfig.json b/tsconfig.json index 7269ab52..406260b8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "allowImportingTsExtensions": true, "noEmit": true, "paths": { - "#*": ["./*"] + "#shared/*": ["./shared/*"] } } }