18 lines
406 B
JSON
18 lines
406 B
JSON
{
|
|
"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"]
|
|
}
|