Skip to content

Commit 21be0fb

Browse files
alexeaglemhevery
authored andcommittedMar 22, 2019
fix(bazel): allow ng_module users to set createExternalSymbolFactoryReexports (#29459)
PR Close #29459
1 parent 9bcc1e8 commit 21be0fb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎packages/bazel/src/ngc-wrapped/index.ts

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ export function runOneBuild(args: string[], inputs?: {[path: string]: string}):
105105

106106
angularCompilerOptions.preserveWhitespaces = angularCompilerOptions.preserveWhitespaces ||
107107
userConfig.angularCompilerOptions.preserveWhitespaces;
108+
109+
angularCompilerOptions.createExternalSymbolFactoryReexports =
110+
angularCompilerOptions.createExternalSymbolFactoryReexports ||
111+
userConfig.angularCompilerOptions.createExternalSymbolFactoryReexports;
108112
}
109113
}
110114

0 commit comments

Comments
 (0)
Please sign in to comment.