Skip to content

Commit

Permalink
Merge pull request #3110 from iotaledger/wasmclient
Browse files Browse the repository at this point in the history
Fix wasmclient typescript built-in types
  • Loading branch information
BugFreeSoftware authored Nov 23, 2023
2 parents 6a71d3d + 4e36f59 commit 9e5f066
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
Binary file modified documentation/tutorial-examples/test/solotutorial_bg.wasm
Binary file not shown.
7 changes: 3 additions & 4 deletions packages/wasmvm/wasmclient/ts/wasmclient/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"types": ["wasmlib/types", "node", "Promise", "jest"],
"types": ["wasmlib/@types", "node", "Promise", "jest"],
"lib": ["ES2021", "DOM"],
"target": "ES2021",
"typeRoots": ["./node_modules/@types"]
},
"target": "ES2021"
}
}
5 changes: 2 additions & 3 deletions packages/wasmvm/wasmlib/ts/wasmlib/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"types": ["node", "Promise", "jest"],
"types": ["./@types", "node", "Promise", "jest"],
"lib": ["ES2021"],
"target": "ES2021",
"typeRoots": ["./types", "./node_modules/@types"]
"target": "ES2021"
}
}

0 comments on commit 9e5f066

Please sign in to comment.