From 19bf980a7fd56f3600e0c865a83f4c111a395fb1 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Sun, 16 Aug 2026 18:04:46 +0700 Subject: [PATCH] fix(ui): inherit base tsconfig target compiler option --- libs/ui/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ui/tsconfig.json b/libs/ui/tsconfig.json index 8efcccb11..a4a489ea2 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -15,10 +15,10 @@ ], "compilerOptions": { "module": "preserve", - "target": "es2021", // TODO: Remove once solved in tsconfig.base.json "strict": false, "strictNullChecks": true, + "useDefineForClassFields": false, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true },