From 45b13017bbce0fd93701e96e71c821e7e9f13e2b Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 5 Feb 2021 01:35:19 -0600 Subject: [PATCH] Add JS config for VS Code --- scripts/jsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/jsconfig.json diff --git a/scripts/jsconfig.json b/scripts/jsconfig.json new file mode 100644 index 00000000..51bb73e6 --- /dev/null +++ b/scripts/jsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es2020", + "moduleResolution": "classic" + }, + "include": [ + "server/*", + "client/*", + "third-party/*" + ] +} \ No newline at end of file