Skip to content

Commit

Permalink
dev: try fixing #378
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Oct 26, 2023
1 parent d698d81 commit 7e78254
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions packages/typst.react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"homepage": "https://myriad-dreamin.github.io/typst.ts/",
"exports": {
".": {
"require": "./dist/src/lib/index.mjs",
"import": "./dist/src/lib/index.mjs",
"types": "./dist/src/lib/index.d.mts"
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./*": {
"require": "./dist/src/lib/*.mjs",
"import": "./dist/src/lib/*.mjs",
"types": "./dist/src/lib/*.d.mts"
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.js"
}
},
"files": [
Expand Down
6 changes: 3 additions & 3 deletions packages/typst.ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"types": "./dist/esm/index.d.mts",
"exports": {
".": {
"types": "./dist/esm/index.d.mts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.mts"
"import": "./dist/esm/index.mjs"
},
"./*": [
"./*",
"./*.d.ts"
"./*.d.mts"
]
},
"files": [
Expand Down

0 comments on commit 7e78254

Please sign in to comment.