Skip to content

Commit

Permalink
fix: move types condition to the front (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed May 1, 2023
1 parent a822090 commit 78715ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -7,14 +7,14 @@
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
"require": "./dist/index.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs",
"types": "./dist/utils.d.ts"
"require": "./dist/utils.cjs"
}
},
"main": "./dist/index.cjs",
Expand Down

0 comments on commit 78715ee

Please sign in to comment.