From b7a9f262225764c97adc05050a7fa9b1ca5ec825 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 6 Sep 2020 21:25:40 -0400 Subject: [PATCH] jsconfig for a bit of autocompletion and intellisense Fixes #1460 Co-Authored-By: Taloth --- frontend/jsconfig.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 frontend/jsconfig.json diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json new file mode 100644 index 000000000..329edb2e3 --- /dev/null +++ b/frontend/jsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "es6", + "checkJs": false, + "baseUrl": "src", + "jsx": "react", + "module": "commonjs", + "moduleResolution": "node", + "paths": { + "*": [ + "*" + ] + } + }, + "include": [ + "./src/**/*" + ], + "exclude": [ + ] +}