vscode/test/automation/tsconfig.json
Matt Bierner 4efa993b13
Bump targets for test/automation and test/integration (#165298)
Also enables strict mode for test/integration since it only had strict null checks previously
2022-11-02 17:10:12 -07:00

22 lines
305 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"declaration": true,
"lib": [
"es2020",
"dom"
]
},
"exclude": [
"node_modules",
"out",
"tools"
]
}