From 1e463d1db513bf29f889591af77e7ae6b7fd64cd Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 9 Sep 2025 17:00:29 -0700 Subject: [PATCH] tsconfig: Enable allowJs. Signed-off-by: Anders Kaseorg --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index d6f2003568..4e0febf390 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,6 +23,9 @@ /* Emit */ "noEmit": true, + /* JavaScript support */ + "allowJs": true, + /* Interop Constraints */ "erasableSyntaxOnly": true, "esModuleInterop": true,