From 9f902c7bfaeb2189716040f2283a6aba644135de Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Mon, 23 Jun 2025 11:52:22 -0400 Subject: [PATCH] test: remove unneeded bazel tsetse configuration Remove outdated `@bazel/tsetse` plugin configuration from test TS configuration. With the `rules_js` migration, `@bazel/tsetse` is no longer used. --- tsconfig-test.json | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tsconfig-test.json b/tsconfig-test.json index 3881877cacbf..cae29f3a3cac 100644 --- a/tsconfig-test.json +++ b/tsconfig-test.json @@ -7,13 +7,6 @@ // Istanbul (not Constantinople) as well, and applying both source maps to get the original // source in devtools. "inlineSources": true, - "types": ["node", "jasmine"], - "plugins": [ - { - "name": "@bazel/tsetse", - // TODO: Cleanup tests and remove this rule disable - "disabledRules": ["must-type-assert-json-parse"] - } - ] + "types": ["node", "jasmine"] } }