From 9b8ec78502bb0c866dbba50663f429fbb2e3771e Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Mon, 19 Aug 2019 23:54:17 +0200 Subject: [PATCH] jsconfig for a bit of autocompletion and intellisense --- 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..b12d0a2d4 --- /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": [ + ] +} \ No newline at end of file