mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-04 01:44:44 -06:00
27 lines
525 B
JSON
27 lines
525 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2024",
|
|
"lib": [
|
|
"ES2024"
|
|
],
|
|
"module": "nodenext",
|
|
"noEmit": true,
|
|
"erasableSyntaxOnly": true,
|
|
"verbatimModuleSyntax": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"exclude": [
|
|
"node_modules/**",
|
|
"monaco-editor-playground/**",
|
|
"builtin/**",
|
|
"vite/**"
|
|
]
|
|
}
|