From f29ea57d03f314829efb643020fcbb049b0eb818 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 25 Jan 2026 14:55:43 +0700 Subject: [PATCH] feat(ts): enable strict null checks in libs/common --- libs/common/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/common/tsconfig.json b/libs/common/tsconfig.json index a14e0fc44..2b4603b71 100644 --- a/libs/common/tsconfig.json +++ b/libs/common/tsconfig.json @@ -12,6 +12,7 @@ ], "compilerOptions": { "module": "preserve", - "lib": ["dom", "es2022"] + "lib": ["dom", "es2022"], + "strictNullChecks": true } }