mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 13:19:42 +00:00
30 lines
581 B
JSON
30 lines
581 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "amd",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"allowUnreachableCode": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"vs/*": [
|
|
"./vs/*"
|
|
]
|
|
},
|
|
"target": "es2022",
|
|
"useDefineForClassFields": false,
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"WebWorker.ImportScripts"
|
|
]
|
|
}
|
|
}
|