Files
vscode/extensions/tsconfig.base.json
Matt Bierner cca17c1b7f Use ts-go for building our extensions
Also reverts to use experimental decorators due to stage 3 decorators not being supported yet https://github.com/microsoft/typescript-go/issues/2354

The skipLib check is needed to work around some jsdom types issues
2026-02-02 20:06:00 -08:00

22 lines
467 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"target": "ES2024",
"lib": [
"ES2024"
],
"module": "commonjs",
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true
}
}