aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2019-08-19 23:57:52 +0300
committerValentin Popov <info@valentineus.link>2019-08-19 23:57:52 +0300
commita6b4bc15ebcfc3aa358fcfc95967da56381f0603 (patch)
treeced42ddcf0612c9caf9d183f4f44c7913f3f51fb /tsconfig.json
parent03dd1ac6af558886acae1296832459827ade54c3 (diff)
downloadelectron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.tar.xz
electron-hot-reload-a6b4bc15ebcfc3aa358fcfc95967da56381f0603.zip
Initial TypeScript
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..5c519e8
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,24 @@
+{
+ "compilerOptions": {
+ "baseUrl": ".",
+ "declaration": true,
+ "declarationMap": true,
+ "esModuleInterop": true,
+ "lib": [
+ "es2015"
+ ],
+ "module": "commonjs",
+ "newLine": "lf",
+ "outDir": "./dist",
+ "removeComments": false,
+ "rootDir": "./src",
+ "sourceMap": true,
+ "strict": true,
+ "target": "es5"
+ },
+ "exclude": [
+ "dist",
+ "node_modules",
+ "test"
+ ]
+} \ No newline at end of file