Skip to content

Commit

Permalink
fix(utils): types for /utils entry point (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunvegda committed Jan 16, 2023
1 parent d129ea6 commit 743d984
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
},
"sideEffects": false,
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs.js",
"exports": {
"./package.json": "./package.json",
Expand All @@ -17,22 +16,26 @@
"types": "./dist/index.d.mts",
"default": "./dist/index.esm.mjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
},
"./*": {
"import": {
"types": "./dist/*.d.mts",
"default": "./dist/*.esm.mjs"
},
"default": {
"types": "./dist/*.d.ts",
"default": "./dist/*.cjs.js"
}
"types": "./dist/*.d.ts",
"default": "./dist/*.cjs.js"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.ts"
]
}
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
Expand Down

0 comments on commit 743d984

Please sign in to comment.