Skip to content

Commit

Permalink
fix: use .mjs module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloashmore committed Jan 14, 2022
1 parent a2f2c23 commit c485fc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
Expand Down

0 comments on commit c485fc1

Please sign in to comment.