Skip to content

Commit

Permalink
fix(concatjs): adding devmode to BazelOpts (#3433)
Browse files Browse the repository at this point in the history
fixes type definition imported by angular ngc-wrapped for options migration.
  • Loading branch information
soldair authored Apr 28, 2022
1 parent 6d5f6e4 commit 5afaab8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/concatjs/internal/tsc_wrapped/tsconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,18 @@ export interface BazelOptions {
googmodule: boolean;

/**
* DEPRECATED. being replaced by devmode.
* If true, emit devmode output into filename.js.
* If false, emit prodmode output into filename.mjs.
*/
es5Mode: boolean;

/**
* If true, emit devmode output into filename.js.
* If false, emit prodmode output into filename.mjs.
*/
devmode: boolean;

/** If true, convert TypeScript code into a Closure-compatible variant. */
tsickle: boolean;

Expand Down

0 comments on commit 5afaab8

Please sign in to comment.