From 962be38b0eafe429d3d2d003c23b47bd49fb3441 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 12 Jul 2026 21:45:55 +0700 Subject: [PATCH] feat(client): enable strict null checks --- apps/client/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index d207f5966..ae0aaf61a 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -22,6 +22,7 @@ "compilerOptions": { "lib": ["dom", "es2022"], "module": "preserve", + "strictNullChecks": true, "target": "es2020" } }