Skip to content

Commit

Permalink
fix: correct exported types to correct directory (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
sroussey authored Feb 13, 2024
1 parent d73badb commit 682def8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"main": "dist/cjs/main.jsx",
"exports": {
".": {
"types": "./dist/index.d.ts",
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/es/index.js"
}
},
"types": "dist/es/index.d.ts",
"types": "dist/types/index.d.ts",
"sideEffects": [
"**/*.css"
],
Expand Down

0 comments on commit 682def8

Please sign in to comment.