Files
jco/test/tsconfig.json
2024-11-21 14:43:10 -08:00

22 lines
502 B
JSON

{
"include": ["runtime/*.ts"],
"TODO": "why are these runtime tests excluded?",
"exclude": [
"runtime/strings.async+js.ts",
"runtime/strings.sync+js.ts",
"runtime/strings.sync.ts"
],
"compilerOptions": {
"outDir": "output",
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "es2020",
"strict": true,
"strictNullChecks": true,
"baseUrl": "../",
"paths": {
"@bytecodealliance/preview2-shim": ["package/preview2-shim"]
}
}
}