From 46f762e71bc1dd2b88d5d64aa7325100eb137068 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 23 Aug 2017 23:06:46 -0400 Subject: [PATCH] fix(ts): exclude typescript specs files from generating error on transpilling --- templates/app/tsconfig(ts).json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/app/tsconfig(ts).json b/templates/app/tsconfig(ts).json index de791d019..53a1571cf 100644 --- a/templates/app/tsconfig(ts).json +++ b/templates/app/tsconfig(ts).json @@ -20,7 +20,8 @@ "./node_modules/@types/" ], "exclude": [ - "node_modules" + "node_modules", + "client/**/*.spec.ts" ], "filesGlob": [ "client/{app,components}/**/!(*.spec).ts"