mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 09:08:53 +01:00
25 lines
340 B
JSON
25 lines
340 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es6",
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"src/typings"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
}
|