Skip to content

Commit

Permalink
fix(fix hook exports'): fix hook exports
Browse files Browse the repository at this point in the history
  • Loading branch information
rileylnapier committed May 23, 2024
1 parent a8c48f3 commit dfd8fb3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/react-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,16 @@
"typings/"
],
"exports": {
".": "./dist/index.js",
".": {
"import": {
"types": "./typings/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./typings/index.d.ts",
"default": "./dist/index.js"
}
},
"./use-inbox": "./dist/inbox/use-inbox.js"
}
}

0 comments on commit dfd8fb3

Please sign in to comment.