mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
28 lines
507 B
JSON
28 lines
507 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "amd",
|
|
"moduleResolution": "classic",
|
|
"noImplicitAny": false,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"target": "es5",
|
|
"sourceMap": false,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": ".",
|
|
"outDir": "../out",
|
|
"typeRoots": [
|
|
"typings"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"../out",
|
|
"../out-build",
|
|
"../out-vscode"
|
|
]
|
|
}
|