diff options
| author | Priyansh <[email protected]> | 2020-12-22 18:23:32 +0530 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2020-12-22 18:23:32 +0530 |
| commit | 23ec207b3d34ce9f0b2c347b9e6d3618366a7d56 (patch) | |
| tree | 7706c4dad5410e743ff5d06f3eca30f3c7fd4565 | |
| parent | 0099f5f99f7fe6e5003870a13d8319ad23ab990e (diff) | |
| download | styx-23ec207b3d34ce9f0b2c347b9e6d3618366a7d56.tar.xz styx-23ec207b3d34ce9f0b2c347b9e6d3618366a7d56.zip | |
Added TS Config
| -rw-r--r-- | tsconfig.json | 15 |
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"] +} |
