From 1c45b0500007b53f98cecd8e0c8ec77276f96a35 Mon Sep 17 00:00:00 2001 From: York Date: Thu, 20 Feb 2025 13:30:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A6=81=E7=94=A8=E4=B8=A5=E6=A0=BC=E6=A3=80?= =?UTF-8?q?=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.app.json | 4 ++-- tsconfig.node.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index 358ca9b..f9a5970 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -17,8 +17,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, // 修改这一行 + "noUnusedParameters": false, // 修改这一行 "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, diff --git a/tsconfig.node.json b/tsconfig.node.json index db0becc..82ab2b0 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -15,8 +15,8 @@ /* Linting */ "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, + "noUnusedLocals": false, // 修改这一行 + "noUnusedParameters": false, // 修改这一行 "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true },