fix(bazel): allow ng_module users to set createExternalSymbolFactoryReexports (#29459)
PR Close #29459
This commit is contained in:
parent
9bcc1e8dce
commit
21be0fb926
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue