Skip to content

Commit 320dbd1

Browse files
committed
fix(bazel/rules_angular): update worker to use user-configured TypeScript instead of npm version
Ensure that the users typescript version is used.
1 parent c799c73 commit 320dbd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bazel/rules/rules_angular/src/worker/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ts_project(
5252
# NOTE: The Angular compiler in this target is not affecting any compilation
5353
# output, but it's still necessary for some foundational utils like virtual FS.
5454
"//:node_modules/@angular/compiler-cli", # compiler from npm.
55-
"//:node_modules/typescript", # typescript from npm.
55+
":node_modules/typescript", # user-configured typescript. Ensure that the users TypeScript version is always used for the compilation.
5656
],
5757
)
5858

0 commit comments

Comments
 (0)