From fb873ec2c3cb71cd478e6d48b424ddbba67cab0a Mon Sep 17 00:00:00 2001 From: Priyansh Date: Tue, 22 Dec 2020 18:39:20 +0530 Subject: App rewrite using typescript --- tsconfig.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 1760a00..6398793 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,14 +2,21 @@ "compilerOptions": { "target": "es5", "module": "commonjs", - "moduleResolution": "node", + "noImplicitAny": false, "sourceMap": true, + "baseUrl": ".", + "paths": { + "*": ["node_modules/*"] + }, + "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, "removeComments": false, - "noImplicitAny": false, "suppressImplicitAnyIndexErrors": true, "outDir": "ts_compiled" }, + "include": [ + "src/**/*" + ], "exclude": ["node_modules"] } -- cgit v1.2.3