Files
vscode/src/tsconfig.base.json
Matt Bierner 4d9e43384f Bump main build target to es2024
The es2024 library additions are now widely supported in node 22 and in modern browsers
2025-08-06 15:12:37 -07:00

27 lines
634 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"
],
"allowSyntheticDefaultImports": true
}
}