From 30d36a3b07010d6d4c343a14b9d53e5cbd469cee Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sun, 14 Sep 2025 17:29:42 +0800 Subject: [PATCH] add noUncheckedIndexedAccess compiler options --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 2ff6f695..ff1b4cad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "noUnusedLocals": true, "noFallthroughCasesInSwitch": true, "noPropertyAccessFromIndexSignature": true, + "noUncheckedIndexedAccess": true, "paths": { "@/*": ["./src/*"] }