From 4d270d94fa2f1680e4e4c5db3afa367d47662598 Mon Sep 17 00:00:00 2001 From: RealBeepMcJeep Date: Tue, 29 Aug 2023 13:50:07 -0700 Subject: [PATCH] initial vscode jsconfig.json for type checking server.js --- jsconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 jsconfig.json diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..790faa9d6 --- /dev/null +++ b/jsconfig.json @@ -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/*" + ] +} \ No newline at end of file