initial vscode jsconfig.json for type checking server.js

This commit is contained in:
RealBeepMcJeep 2023-08-29 13:50:07 -07:00
parent 01ff9604bd
commit 4d270d94fa
1 changed files with 16 additions and 0 deletions

16
jsconfig.json Normal file
View File

@ -0,0 +1,16 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"strictNullChecks": true,
"strictFunctionTypes": true,
"checkJs": true,
"allowUmdGlobalAccess": true,
"allowSyntheticDefaultImports": true
},
"exclude": [
"node_modules",
"**/node_modules/*"
]
}