aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorPriyansh <[email protected]>2020-12-22 18:23:32 +0530
committerPriyansh <[email protected]>2020-12-22 18:23:32 +0530
commit23ec207b3d34ce9f0b2c347b9e6d3618366a7d56 (patch)
tree7706c4dad5410e743ff5d06f3eca30f3c7fd4565 /tsconfig.json
parent0099f5f99f7fe6e5003870a13d8319ad23ab990e (diff)
downloadstyx-23ec207b3d34ce9f0b2c347b9e6d3618366a7d56.tar.xz
styx-23ec207b3d34ce9f0b2c347b9e6d3618366a7d56.zip
Added TS Config
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..1760a00
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "sourceMap": true,
+ "emitDecoratorMetadata": true,
+ "experimentalDecorators": true,
+ "removeComments": false,
+ "noImplicitAny": false,
+ "suppressImplicitAnyIndexErrors": true,
+ "outDir": "ts_compiled"
+ },
+ "exclude": ["node_modules"]
+}