fix(bazel): allow ng_module users to set createExternalSymbolFactoryReexports (#29459)

PR Close #29459
This commit is contained in:
Alex Eagle 2019-03-21 13:51:03 -07:00 committed by Miško Hevery
parent 9bcc1e8dce
commit 21be0fb926
1 changed files with 4 additions and 0 deletions

View File

@ -105,6 +105,10 @@ export function runOneBuild(args: string[], inputs?: {[path: string]: string}):
angularCompilerOptions.preserveWhitespaces = angularCompilerOptions.preserveWhitespaces ||
userConfig.angularCompilerOptions.preserveWhitespaces;
angularCompilerOptions.createExternalSymbolFactoryReexports =
angularCompilerOptions.createExternalSymbolFactoryReexports ||
userConfig.angularCompilerOptions.createExternalSymbolFactoryReexports;
}
}