Fix module resolution stuff

This commit is contained in:
Jon Staab
2025-04-02 13:17:06 -07:00
parent 13818e5c80
commit 932a08b7b1
13 changed files with 39 additions and 35 deletions
+3 -3
View File
@@ -8,13 +8,13 @@
"access": "public"
},
"type": "module",
"main": "dist/store/src/index",
"types": "dist/store/src/index",
"main": "dist/store/src/index.js",
"types": "dist/store/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"build": "pnpm run clean && pnpm run compile --force",
"clean": "rimraf ./dist",
"compile": "tsc -b tsconfig.build.json",
"prepublishOnly": "pnpm run build"