Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
aabccd021 committed Jan 17, 2023
1 parent 2787633 commit 8426f39
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/cjs/index.d.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./node": {
"require": "./dist/node.js",
"import": "./dist/node.mjs"
"import": "./dist/node.mjs",
"types": "./dist/node.d.ts"
}
},
"tsup": {
Expand Down

0 comments on commit 8426f39

Please sign in to comment.