From d1b3137e0991fb67b7c258ff513e133025665477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=9A?= =?UTF-8?q?=D1=80=D1=8F=D1=87=D0=BA=D0=BE?= Date: Fri, 5 Jul 2019 11:45:18 +0500 Subject: [PATCH] added --noResolve compiler option --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0c365b3..2878f24 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "compilerOptions": { "module": "commonjs", "moduleResolution": "node", - "noImplicitAny": false, + "noResolve" : true, + "noImplicitAny": false, "removeComments": true, "preserveConstEnums": true, "declaration": true, @@ -19,4 +20,4 @@ "node_modules", "**/*.spec.ts" ] -} \ No newline at end of file +}