From 15111114bdded651d846d87c4f2ea40c90d5831a Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sat, 28 Mar 2026 17:00:14 +0700 Subject: [PATCH] feat(ui): enable strict null checks --- libs/ui/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ui/tsconfig.json b/libs/ui/tsconfig.json index 04f4630bc..51348a52a 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -19,6 +19,7 @@ "target": "es2020", // TODO: Remove once solved in tsconfig.base.json "strict": false, + "strictNullChecks": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true },