Introduce VSCode companion extension (#3917)

This commit is contained in:
christine betts 2025-07-14 15:34:44 +00:00 committed by GitHub
parent 64f1d80b26
commit e9d680e8a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 5806 additions and 6 deletions

View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "Node16",
"target": "ES2022",
"lib": ["ES2022", "dom"],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
}
}