From 4207d33eddfb785b083ebbdbd2cdce98be612140 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Tue, 27 Jan 2026 00:55:03 +0700 Subject: [PATCH] feat(lib): enable strict null checks in libs/ui --- 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 },