mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-21 10:17:25 +00:00
26 lines
594 B
JSON
26 lines
594 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"moduleDetection": "legacy",
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"allowUnreachableCode": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"target": "ES2024",
|
|
"useDefineForClassFields": false,
|
|
"lib": [
|
|
"ES2024",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"WebWorker.ImportScripts"
|
|
]
|
|
}
|
|
}
|