Skip to content

Commit

Permalink
fix: put types first
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoCampos89 committed Mar 22, 2024
1 parent a7ec31f commit 1b5a10b
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 @@ -8,16 +8,16 @@
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js"
},
"./constants": {
"import": "./dist/constants/index.js",
"types": "./dist/constants/index.d.ts"
"types": "./dist/constants/index.d.ts",
"import": "./dist/constants/index.js"
}
},
"files": [
Expand Down

0 comments on commit 1b5a10b

Please sign in to comment.