From 54e22c828e912e64353ee6867c7bdcbaf10fac2c Mon Sep 17 00:00:00 2001 From: JoonYoung Lee Date: Tue, 6 Aug 2019 22:50:44 +0900 Subject: [PATCH] fix: Fix build error - files in `src/app/utils` are for tests, so it should be excluded from app build --- src/tsconfig.app.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.app.json b/src/tsconfig.app.json index 5e2507d..ed78eb0 100644 --- a/src/tsconfig.app.json +++ b/src/tsconfig.app.json @@ -8,6 +8,7 @@ }, "exclude": [ "test.ts", - "**/*.spec.ts" + "**/*.spec.ts", + "app/utils" ] }