From bd8b152bfdca399f354cbd11576bc62d72d57dae Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Thu, 2 Apr 2026 09:47:50 -0700 Subject: [PATCH] noFallthroughCasesInSwitch: enabled switch fallthrough checking --- server/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/server/tsconfig.json b/server/tsconfig.json index 481afc598..235f8a129 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -6,6 +6,7 @@ "noImplicitAny": true, "alwaysStrict": true, "strictBindCallApply": true, + "noFallthroughCasesInSwitch": true, "outDir": "./dist", "esModuleInterop": true, "moduleResolution": "NodeNext",