From 70b061be2e11694b5f35a0ecd83586cf3274f269 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 4 Dec 2017 09:47:50 -0800 Subject: [PATCH] fix(aio): tsconfig.app.json excludes all testing files (#20779) Fixes app build error in testing guide which has testing folder at multiple levels, with files in them referring to files in the root `testing` folder. Also removed the exclusion of files with `.1` in the name because all app `.ts` files must be buildable per aio policy. must build PR Close #20779 --- .../examples/shared/boilerplate/cli/src/tsconfig.app.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aio/tools/examples/shared/boilerplate/cli/src/tsconfig.app.json b/aio/tools/examples/shared/boilerplate/cli/src/tsconfig.app.json index acdeb220c6..009e50f002 100644 --- a/aio/tools/examples/shared/boilerplate/cli/src/tsconfig.app.json +++ b/aio/tools/examples/shared/boilerplate/cli/src/tsconfig.app.json @@ -9,7 +9,6 @@ "exclude": [ "test.ts", "**/*.spec.ts", - "testing/**", - "**/*.1.*" + "**/testing/*" ] }