Skip to content

Commit

Permalink
Fix client types resolution (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleason authored Dec 1, 2024
1 parent 42bc3b0 commit 04dfc9c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
Expand Down

0 comments on commit 04dfc9c

Please sign in to comment.