WASM
This commit is contained in:
parent
ade0c3cde4
commit
298253d6fa
31 changed files with 2899 additions and 276 deletions
18
example-usage/web-client/tsconfig.json
Normal file
18
example-usage/web-client/tsconfig.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"strict": true,
|
||||
"noEmit": true,
|
||||
"isolatedModules": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"paths": {
|
||||
"mtp-wasm": ["../../wasm/pkg"]
|
||||
},
|
||||
"rootDir": "../.."
|
||||
},
|
||||
"include": ["src", "../../wasm/pkg"]
|
||||
}
|
||||
Loading…
Reference in a new issue