From ff71af7f02da6689b5c9c95bb7a2286bdc34bfbb Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 15 Nov 2024 11:19:16 +0100 Subject: [PATCH] fix(bazel): allow strictStandalone to be passed through tsconfig (#58683) Allows users to pass the `strictStandalone` compiler option through the tsconfig. PR Close #58683 --- 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 72a687f58fe..290df63602e 100644 --- a/packages/bazel/src/ngc-wrapped/index.ts +++ b/packages/bazel/src/ngc-wrapped/index.ts @@ -93,6 +93,7 @@ export async function runOneBuild( 'generateExtraImportsInLocalMode', '_enableLetSyntax', '_enableHmr', + 'strictStandalone', ]); const userOverrides = Object.entries(userOptions)