fix(compiler): compile .ngfactory.ts files even if nobody references them. (#16899)

This is especially important for library authors, as they will
not reference the .ngfactory.ts files.

Fixes #16741
This commit is contained in:
Tobias Bosch
2017-05-25 10:00:26 -07:00
committed by Chuck Jazdzewski
parent 966eb2fbd0
commit 573b8611bc
10 changed files with 165 additions and 58 deletions

View File

@ -13,7 +13,8 @@
"noImplicitAny": false,
"sourceMap": false,
"experimentalDecorators": true,
"outDir": "built/src",
"outDir": "built",
"rootDir": ".",
"declaration": true,
"types": []
},