Skip to content

Commit

Permalink
fix(pkg): move types field to the first
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Mar 7, 2023
1 parent a491333 commit f2b08f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
"sideEffects": false,
"exports": {
"./drivers/*": {
"types": "./drivers/*.d.ts",
"import": "./drivers/*.mjs",
"require": "./drivers/*.cjs",
"types": "./drivers/*.d.ts"
"require": "./drivers/*.cjs"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.mjs",
"require": "./dist/server.cjs",
"types": "./dist/server.d.ts"
"require": "./dist/server.cjs"
}
},
"main": "./dist/index.cjs",
Expand Down

0 comments on commit f2b08f6

Please sign in to comment.