From df011729670706e8b7354fa539db443a1f53a56c Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Thu, 9 Apr 2026 15:13:50 +0000 Subject: [PATCH] fix(bazel/rules_angular): update worker to use user-configured TypeScript instead of npm version Ensure that the users typescript version is used. --- bazel/rules/rules_angular/src/worker/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/rules/rules_angular/src/worker/BUILD.bazel b/bazel/rules/rules_angular/src/worker/BUILD.bazel index 4dab72be8..265eda23b 100644 --- a/bazel/rules/rules_angular/src/worker/BUILD.bazel +++ b/bazel/rules/rules_angular/src/worker/BUILD.bazel @@ -52,7 +52,7 @@ ts_project( # NOTE: The Angular compiler in this target is not affecting any compilation # output, but it's still necessary for some foundational utils like virtual FS. "//:node_modules/@angular/compiler-cli", # compiler from npm. - "//:node_modules/typescript", # typescript from npm. + ":node_modules/typescript", # user-configured typescript. Ensure that the users TypeScript version is always used for the compilation. ], )