Skip to content

Commit

Permalink
fix: bad module export
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave136 committed Jul 15, 2023
1 parent 65ccf77 commit 590dde0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"util"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
Expand Down Expand Up @@ -46,4 +46,4 @@
"dependencies": {
"lodash": "^4.17.21"
}
}
}

0 comments on commit 590dde0

Please sign in to comment.