Skip to content

Commit 0a5575e

Browse files
committed
build: bypass TS 5.9 deprecation warnings for rules_angular update
Enable ignoreDeprecations to resolve a conflict introduced by updating rules_angular. The update fixes a version mismatch where the worker's TypeScript was prioritized over the repo's version. Compiling with the repo's TypeScript now requires this flag due to the deprecation of moduleResolution: "node".
1 parent 94aa77c commit 0a5575e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bazel_dep(name = "aspect_rules_jasmine", version = "2.0.4")
1919
bazel_dep(name = "rules_angular")
2020
git_override(
2121
module_name = "rules_angular",
22-
commit = "6c36180c2efebc6526ef0e6a55a6d738c7de6909",
22+
commit = "0d390186270572cf0e56f826ca420cb21011a10c",
2323
remote = "https://github.com/angular/rules_angular.git",
2424
)
2525

MODULE.bazel.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"esModuleInterop": true,
55
"module": "commonjs",
66
"moduleResolution": "node",
7+
"ignoreDeprecations": "6.0",
78
"noEmitOnError": true,
89
"stripInternal": true,
910
"noFallthroughCasesInSwitch": true,

0 commit comments

Comments
 (0)