Skip to content

Commit

Permalink
fix export syntax (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
charkour authored Dec 21, 2023
1 parent ec057a5 commit 13ab577
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@
"author": "Charles Kornoelje",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
Expand Down

0 comments on commit 13ab577

Please sign in to comment.