summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 000000000..aa81406c3
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compilerOptions": {
+ "module": "commonjs",
+ "noImplicitAny": true,
+ "sourceMap": true,
+ "removeComments": true,
+ "preserveConstEnums": true,
+ "declaration": true,
+ "target": "es5",
+ "lib": ["es2015", "dom"],
+ "noEmit": true,
+ "noUnusedLocals": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "alwaysStrict": true,
+ "noUnusedParameters": false,
+ "pretty": true,
+ "noFallthroughCasesInSwitch": true,
+ "allowUnreachableCode": false,
+ "experimentalDecorators": true
+ },
+ "include": ["*.ts"]
+}