Skip to content

Commit

Permalink
chore: fix export conditions in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito committed May 8, 2024
1 parent 903053d commit 574a794
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
"types": "./lib/cjs/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
"require": "./lib/cjs/index.cjs",
"import": "./lib/esm/index.mjs",
"default": "./lib/cjs/index.js"
}
},
"files": [
Expand Down

0 comments on commit 574a794

Please sign in to comment.