From 71ad2ec794ef2ff56ef7d841b059c8c60d14a71e Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 15 Aug 2020 00:03:39 -0400 Subject: [PATCH] jsconfig for a bit of autocompletion and intellisense Fixes #4762 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": [ + ] +}