We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33fdf9b commit 015bb9fCopy full SHA for 015bb9f
.gitignore
@@ -4,3 +4,4 @@
4
dist
5
jotai
6
node_modules
7
+.DS_Store
package.json
@@ -21,8 +21,8 @@
21
"./package.json": "./package.json",
22
".": {
23
"import": {
24
- "types": "./src/index.ts",
25
- "default": "./src/index.ts"
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.js"
26
},
27
"require": {
28
"types": "./dist/cjs/index.d.ts",
@@ -47,6 +47,7 @@
47
"fix": "pnpm run '/^fix:.*/'",
48
"fix:format": "prettier --write .",
49
"fix:lint": "eslint --config ./eslint.config.ts --fix .",
50
+ "pretest": "pnpm compile",
51
"test": "pnpm run \"/^test:.*/\"",
52
"test:format": "prettier --list-different .",
53
"test:types": "tsc --noEmit",
0 commit comments