Skip to content

Commit

Permalink
fix: List types first in export map
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Sep 24, 2023
1 parent 70287cb commit af0729d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"./parsers": {
"types": "./dist/parsers.d.ts",
"import": "./dist/parsers.js",
"require": "./dist/parsers.cjs",
"types": "./dist/parsers.d.ts"
"require": "./dist/parsers.cjs"
}
},
"scripts": {
Expand Down

0 comments on commit af0729d

Please sign in to comment.