From 3fdf7ae64a469a83160c0cfe44f95bde4f944174 Mon Sep 17 00:00:00 2001 From: Xubin Ren <52506698+Re-bin@users.noreply.github.com> Date: Mon, 17 Aug 2026 19:16:57 +0800 Subject: [PATCH] chore(tui): tighten TypeScript checks --- tui/tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tui/tsconfig.json b/tui/tsconfig.json index 220ad4a64..79bdcaec5 100644 --- a/tui/tsconfig.json +++ b/tui/tsconfig.json @@ -5,7 +5,11 @@ "moduleResolution": "Bundler", "strict": true, "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, "noUncheckedIndexedAccess": true, + "noUnusedLocals": true, + "noUnusedParameters": true, "noEmit": true, "types": ["bun"] },