summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2019-12-24 20:02:24 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2019-12-24 20:02:24 +0100
commit2f77cf7b7484beb3b94900f95d61fd2685c42ac2 (patch)
treefe4e499e245e9dc0d78e125194a8f89b109ef2e9 /tsconfig.json
parent53c18527578b313e767810cedf0b1979d3e6cd77 (diff)
downloadrpgedit-2f77cf7b7484beb3b94900f95d61fd2685c42ac2.tar
rpgedit-2f77cf7b7484beb3b94900f95d61fd2685c42ac2.zip
Switch to eslint+prettier
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/**/*"
+ ]
}