mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
56b0088dce
* update vscode-test-web * add @playwright/browser-chromium * add skipLibCheck * add skipLibCheck * use esnext * cleanup
21 lines
320 B
JSON
21 lines
320 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2020",
|
|
"strict": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"lib": [
|
|
"esnext", // for #201187
|
|
"dom"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"tools"
|
|
]
|
|
}
|