Files
vscode-extension-samples/codelens-sample/tsconfig.json

17 lines
453 B
JSON
Raw Permalink Normal View History

2018-10-16 19:31:54 -03:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"lib": ["ES2019"],
2018-10-16 19:31:54 -03:00
"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"
]
}