vscode/test/automation/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
344 B
JSON
Raw Permalink Normal View History

2024-11-15 06:29:18 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"declaration": true,
"skipLibCheck": true,
"lib": [
"esnext", // for #201187
"dom"
]
},
"exclude": [
"node_modules",
"out",
"tools"
]
}