From f28e727a575dca6107e4b4542ad7a39f0e996f49 Mon Sep 17 00:00:00 2001 From: Michael Moss Date: Wed, 25 Mar 2026 10:38:11 -0700 Subject: [PATCH] Ignore new tsc deprecation warning from emscripten. PiperOrigin-RevId: 889322248 Change-Id: I70be60506a8ecbc0dde0f64f5a31c075a804706e --- wasm/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wasm/tsconfig.json b/wasm/tsconfig.json index b675f402..3f86141b 100644 --- a/wasm/tsconfig.json +++ b/wasm/tsconfig.json @@ -5,7 +5,8 @@ "moduleResolution": "node", "esModuleInterop": true, "strict": true, - "types": ["jasmine"] + "types": ["jasmine"], + "ignoreDeprecations": "6.0" }, "include": ["tests/**/*"] }