Files
vscode-extension-samples/codelens-sample/tsconfig.json
Matt Bierner 0d36653b0d Bump all targets to es2020
Fixes #530
2022-02-28 13:45:21 -08:00

17 lines
453 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"lib": ["es2020"],
"outDir": "out",
"sourceMap": true,
"rootDir": "src",
/* Strict Type-Checking Option */
"strict": true, /* enable all strict type-checking options */
/* Additional Checks */
"noUnusedLocals": true /* Report errors on unused locals. */
},
"exclude": [
"node_modules"
]
}