vscode/test/monaco/tsconfig.json

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

22 lines
320 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
"target": "es2016",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"declaration": true,
"lib": [
"esnext", // for #201187
"dom"
]
},
"exclude": [
"node_modules",
"out",
"tools"
]
}