vscode/test/smoke/tsconfig.json

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

23 lines
384 B
JSON
Raw Permalink Normal View History

2017-05-22 11:56:23 +00:00
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"target": "es2020",
"strict": true,
2017-05-22 11:56:23 +00:00
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"skipLibCheck": true,
2017-05-22 11:56:23 +00:00
"lib": [
"esnext", // for #201187
2017-05-22 11:56:23 +00:00
"dom"
]
},
"exclude": [
"node_modules"
]
2019-08-30 15:56:56 +00:00
}