From 570cb67dff26b18263d0c35feffb95360dae2397 Mon Sep 17 00:00:00 2001 From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com> Date: Mon, 29 Dec 2025 05:57:08 +0000 Subject: [PATCH] fix(ts): set target to es2022 This resolves the warning: TypeScript compiler options "target" and "useDefineForClassFields" are set to "ES2022" and "false" respectively by the Angular CLI. To control ECMA version and features use the Browserslist configuration. For more information, see https://angular.dev/tools/cli/build#configuring-browser-compatibility. --- 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 3ec4903b5..096c8eddd 100644 --- a/libs/ui/tsconfig.json +++ b/libs/ui/tsconfig.json @@ -14,7 +14,7 @@ } ], "compilerOptions": { - "target": "es2020", + "target": "es2022", // TODO: Remove once solved in tsconfig.base.json "strict": false, "noImplicitReturns": true,