summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json13
1 files changed, 12 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index b9e1b10..ae84a37 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,3 +1,14 @@
{
- "extends": "./node_modules/electron-webpack/tsconfig-base.json"
+ "compilerOptions": {
+ "target": "ES2017",
+ "module": "commonjs",
+ "strict": true,
+ "jsx": "react",
+ "outDir": "dist",
+ "sourceMap": true,
+ "declaration": true
+ },
+ "include": [
+ "src/**/*"
+ ]
}