diff --git a/packages/concatjs/internal/tsc_wrapped/compiler_host.ts b/packages/concatjs/internal/tsc_wrapped/compiler_host.ts index 735ab5dc27..63aeb2c02d 100644 --- a/packages/concatjs/internal/tsc_wrapped/compiler_host.ts +++ b/packages/concatjs/internal/tsc_wrapped/compiler_host.ts @@ -84,6 +84,8 @@ export class CompilerHost implements ts.CompilerHost, tsickle.TsickleHost { getCancelationToken?: () => ts.CancellationToken; directoryExists?: (dir: string) => boolean; + + generateExtraSuppressions: boolean; googmodule: boolean; es5Mode: boolean; @@ -128,6 +130,8 @@ export class CompilerHost implements ts.CompilerHost, tsickle.TsickleHost { if (this.allowActionInputReads && delegate && delegate.directoryExists) { this.directoryExists = delegate.directoryExists.bind(delegate); } + + this.generateExtraSuppressions = true; validateBazelOptions(bazelOpts); this.googmodule = bazelOpts.googmodule;