From b41c0bf2cc295c8f3f2c11249f497d27f35975ce Mon Sep 17 00:00:00 2001 From: CHaBou Date: Wed, 27 Sep 2017 00:35:14 +0200 Subject: [PATCH] Type checking configuration (#2291) --- jsconfig.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index 88e4da83..21d50180 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -1,11 +1,8 @@ { "compilerOptions": { - "checkJs": true + "checkJs": true, + "jsx": "react", + "target": "es6" }, - "exclude": [ - "node_modules", - "**/node_modules/*", - "bin/*" - "dist/*" - ] + "exclude": ["node_modules", "**/node_modules/*", "bin/*", "renderer/*"] }