Skip to content

Commit c5fa95d

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 c5fa95d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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)