mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 08:15:56 +01:00
26 lines
373 B
JSON
26 lines
373 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2016",
|
|
"strict": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"types": [
|
|
"mocha"
|
|
],
|
|
"lib": [
|
|
"esnext", // for #201187
|
|
"dom"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"tools"
|
|
]
|
|
}
|