Skip to content

Commit

Permalink
fix: Correct module property for ESM builds in package.json (#66)
Browse files Browse the repository at this point in the history
Thanks @ty-ler !
  • Loading branch information
swederik authored Apr 4, 2022
1 parent b3d0a51 commit d53b857
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/streaming-image-volume-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "dist/umd/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.ts",
"module": "dist/esm/index.js",
"files": [
"dist/"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Cornerstone3D Tools",
"main": "dist/umd/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.ts",
"module": "dist/esm/index.js",
"files": [
"dist/"
],
Expand Down

0 comments on commit d53b857

Please sign in to comment.