Skip to content

Commit

Permalink
fix(bazel): allow ng_module users to set createExternalSymbolFactoryR…
Browse files Browse the repository at this point in the history
…eexports (#29459)

PR Close #29459
  • Loading branch information
alexeagle authored and mhevery committed Mar 22, 2019
1 parent 9bcc1e8 commit 21be0fb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/bazel/src/ngc-wrapped/index.ts
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 21be0fb

Please sign in to comment.