This commit is contained in:
2023-09-29 19:14:53 -07:00
parent 9ee21dbe30
commit 929d4e1ccd
44 changed files with 3147 additions and 174 deletions

View File

@ -1,16 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"allowSyntheticDefaultImports": true,
"lib": [
"ES2020"
],
"sourceMap": true,
"module": "commonjs",
"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. */
}
}
"sourceMap": true,
"strict": true,
"target": "ES2020"
},
"exclude": [
"node_modules",
".vscode-test",
"webviews"
]
}