Skip to content

Commit

Permalink
fix(bindgen): Fix package.json types path
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Aug 14, 2023
1 parent 7d9b01e commit 5c180d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/compress-stringify/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Zstandard compression and decompression and base64 encoding and decoding in WebAssembly.",
"type": "module",
"module": "./dist/bundles/compress-stringify.js",
"types": "./dist/index.d.ts",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"browser": "./dist/bundles/compress-stringify.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dicom/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Read files and images related to DICOM file format.",
"type": "module",
"module": "./dist/bundles/dicom.js",
"types": "./dist/index.d.ts",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"browser": "./dist/bundles/dicom.js",
Expand Down
2 changes: 1 addition & 1 deletion src/bindgen/typescript/resources/template.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"type": "module",
"module": "./dist/bundles/bundle-name.js",
"types": "./dist/index.d.ts",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"browser": "./dist/bundles/bundle-name.js",
Expand Down

0 comments on commit 5c180d4

Please sign in to comment.