From ac6e7fa97e40a73ef45fe254dd6bbd1b2e278978 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Sun, 24 Jul 2022 11:21:23 +0200 Subject: [PATCH] fix(bazel): allow extendedDiagnostics option to be passed in through tsconfig (#46953) Adds the `extendedDiagnostics` field to the list of allowed options so that it is picked up from the user's tsconfig. PR Close #46953 --- packages/bazel/src/ngc-wrapped/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/bazel/src/ngc-wrapped/index.ts b/packages/bazel/src/ngc-wrapped/index.ts index a34c85fad68..e69a0a32916 100644 --- a/packages/bazel/src/ngc-wrapped/index.ts +++ b/packages/bazel/src/ngc-wrapped/index.ts @@ -136,6 +136,7 @@ export async function runOneBuild( 'i18nInMissingTranslations', 'preserveWhitespaces', 'createExternalSymbolFactoryReexports', + 'extendedDiagnostics', ]); const userOverrides = Object.entries(userOptions)