Skip to content

Commit

Permalink
fix: invalid types exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Mar 23, 2024
1 parent 5ae3b07 commit 5ea0e19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 5ea0e19

Please sign in to comment.