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
This commit is contained in:
Ward Bell 2017-12-04 09:47:50 -08:00 committed by Jason Aden
parent 46aa0a1cf6
commit 70b061be2e
1 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,6 @@
"exclude": [ "exclude": [
"test.ts", "test.ts",
"**/*.spec.ts", "**/*.spec.ts",
"testing/**", "**/testing/*"
"**/*.1.*"
] ]
} }