Skip to content

Commit

Permalink
Fix package.json module path
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsmedley committed Feb 2, 2024
1 parent d31e432 commit 07e1916
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 @@ -8,12 +8,12 @@
},
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"module": "./src/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./src/index.mjs",
"import": "./src/index.js",
"types": "./dist/index.d.ts"
}
},
Expand Down

0 comments on commit 07e1916

Please sign in to comment.