From 751cc2cc043bd96ec298c2fa3453479d5f7ad510 Mon Sep 17 00:00:00 2001 From: Pavel Lutskov Date: Mon, 31 May 2021 20:59:42 +0200 Subject: [PATCH] Add jsconfig.json To improve JS experience --- frontend/jsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 frontend/jsconfig.json diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json new file mode 100644 index 0000000..8225e17 --- /dev/null +++ b/frontend/jsconfig.json @@ -0,0 +1,6 @@ +{ + "compilerOptions" : { + "checkJs": true, + "target": "es6" + } +}