Files
vscode/test/sanity/tsconfig.json
Dmitriy Vasyura aaaac22b3c Sanity tests for Linux (#290072)
Added Linux containers for supported platforms.
Updated tests to run and pass on all targets.
2026-01-23 18:49:15 -08:00

25 lines
425 B
JSON

{
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "bundler",
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"target": "es2024",
"strict": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom"
]
},
"exclude": [
"node_modules"
]
}