From 9fa6c50d76cfa813223d38f1c5641d723b981d18 Mon Sep 17 00:00:00 2001 From: Bill Church Date: Wed, 18 May 2022 21:46:25 -0400 Subject: [PATCH] chore: jsconfig file --- app/jsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/jsconfig.json diff --git a/app/jsconfig.json b/app/jsconfig.json new file mode 100644 index 0000000..60620a3 --- /dev/null +++ b/app/jsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Node", + "target": "ES2020", + "jsx": "preserve", + "strictFunctionTypes": true + }, + "exclude": [ + "node_modules", + "**/node_modules/*" + ], + "include": [ + "server/*.js", + "index.js" + ] +} \ No newline at end of file