Skip to content

Commit

Permalink
fix: fix export map order (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot authored and rattrayalex committed Jul 19, 2023
1 parent a6bbcad commit 51e70cb
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 @@ -48,17 +48,17 @@
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./*": {
"./*.mjs": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"default": "./dist/*.mjs"
},
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*.mjs": {
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"default": "./dist/*.mjs"
}
},
Expand Down

0 comments on commit 51e70cb

Please sign in to comment.