Skip to content

Commit

Permalink
fix: exports
Browse files Browse the repository at this point in the history
  • Loading branch information
lzear committed Nov 14, 2023
1 parent 1682d12 commit 958d2f9
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,18 @@
],
"main": "./dist/index.js",
"exports": {
".": "./dist/index.mjs",
"./configs/recommended": "./dist/configs/recommended.mjs",
"./configs/all": "./dist/configs/all.mjs",
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./configs/recommended": {
"require": "./dist/configs/recommended.js",
"import": "./dist/configs/recommended.mjs"
},
"./configs/all": {
"require": "./dist/configs/all.js",
"import": "./dist/configs/all.mjs"
},
"./package.json": "./package.json"
},
"packageManager": "yarn@1.22.19",
Expand Down

0 comments on commit 958d2f9

Please sign in to comment.