vscode/build/tsconfig.json
Matt Bierner e779f86b17
Build script cleanup
For #277526

Quick cleanup pass after converting these scripts
2025-11-24 14:07:28 -08:00

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/**"
]
}