From 5dd8567af65388da1f970955b031bfb7633a63a7 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Fri, 17 Jul 2026 09:35:06 +0700 Subject: [PATCH] feat(ts): disable allowing unreachable code --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 909e1757a..70989710d 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -34,7 +34,7 @@ "noPropertyAccessFromIndexSignature": false, "noUnusedLocals": true, "noUnusedParameters": true, - "allowUnreachableCode": true + "allowUnreachableCode": false }, "exclude": ["node_modules", "tmp"] }