Skip to content

Commit

Permalink
fix: switch to type=module for Webpack <5 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett authored Mar 17, 2023
1 parent 2b430b1 commit 9b4e3c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@
"dist/*",
"src/*"
],
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"sideEffects": false,
"devDependencies": {
"@react-three/drei": "^9.13.2",
Expand Down

0 comments on commit 9b4e3c5

Please sign in to comment.