Skip to content

Commit

Permalink
fix(build): reorder the types field in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
HiChen404 committed Feb 5, 2023
1 parent 8c789c9 commit e418a14
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 @@ -18,20 +18,20 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": {
"types": "./esm/index.d.mts",
"default": "./esm/index.mjs"
},
"types": "./index.d.ts",
"module": "./esm/index.js",
"default": "./index.js"
},
"./*": {
"types": "./*.d.ts",
"import": {
"types": "./esm/*.d.mts",
"default": "./esm/*.mjs"
},
"types": "./*.d.ts",
"module": "./esm/*.js",
"default": "./*.js"
}
Expand Down

0 comments on commit e418a14

Please sign in to comment.