From 46c411a7f442de7c0398c7d2d827696c19ec4cee Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 6 Feb 2026 00:13:50 +0000 Subject: [PATCH] Disable `noUnusedLocals` and `noUnusedParameters` --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index dd944b9fa7..7676dc322e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,8 +19,8 @@ "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ /* Additional Checks */ - "noUnusedLocals": true, /* Report errors on unused locals. */ - "noUnusedParameters": true, /* Report errors on unused parameters. */ + "noUnusedLocals": false, /* Report errors on unused locals. */ + "noUnusedParameters": false, /* Report errors on unused parameters. */ "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */