From 23ec207b3d34ce9f0b2c347b9e6d3618366a7d56 Mon Sep 17 00:00:00 2001 From: Priyansh Date: Tue, 22 Dec 2020 18:23:32 +0530 Subject: Added TS Config --- tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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"] +} -- cgit v1.2.3