refactor(compiler): don’t always compile .ngfactory.ts files by default

This puts the behavior introduced in https://github.com/angular/angular/commit/573b8611bc4ab85a7436ee110526678a0ecf6c76 behind the new flag
`alwaysCompileGeneratedCode` to not break users that might have relied
on this behavior.
This commit is contained in:
Tobias Bosch
2017-06-12 14:10:08 -07:00
committed by Alex Rickabaugh
parent 6ca46929fa
commit ed73d4f3ac
5 changed files with 51 additions and 7 deletions
@@ -4,7 +4,8 @@
// in the same source directory with your code.
"genDir": ".",
"debug": true,
"enableSummariesForJit": true
"enableSummariesForJit": true,
"alwaysCompileGeneratedCode": true
},
"compilerOptions": {