Skip to content

Commit 9b34cda

Browse files
committed
Fix exports
1 parent 2efa66f commit 9b34cda

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"type": "module",
1919
"exports": {
2020
".": {
21-
"types": "./dist/index.d.ts",
22-
"import": "./dist/index-esm.js",
23-
"require": "./dist/index-cjs.js"
21+
"types": "./index.d.ts",
22+
"import": "./index-esm.js",
23+
"require": "./index-cjs.js"
2424
},
2525
"./package.json": "./package.json"
2626
},
27-
"main": "dist/index-cjs.js",
28-
"module": "dist/index-esm.js",
29-
"types": "dist/index.d.ts",
27+
"main": "./index-cjs.js",
28+
"module": "./index-esm.js",
29+
"types": "./index.d.ts",
3030
"scripts": {
3131
"postbuild": "node --no-warnings tools/postbuild.mjs",
3232
"build": "run-p build:*",

0 commit comments

Comments
 (0)