Skip to content

Commit

Permalink
Fix exports (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyalIcing committed Jan 30, 2024
1 parent 8caa5fb commit a0bd5fd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.mjs",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"import": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
}
},
"files": [
Expand Down

0 comments on commit a0bd5fd

Please sign in to comment.