From 710ef918aef7ed22a61de6dc5865735cb7944ddd Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 19 Mar 2025 14:43:11 -0400 Subject: [PATCH] build: update tsconfig ECMAScript version to ES2023 With Node.js v20 now the minimum supported version for Angular v20, the ECMAScript version used with TypeScript can be increased to ES2023. This change applies to the build process for the CLI packages themselves and is not related to the configuration used within projects. --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 4df52a94fea7..f00528f2698f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,8 +11,8 @@ "isolatedModules": true, "skipLibCheck": true, "strict": true, - "target": "es2022", - "lib": ["es2022"], + "target": "es2023", + "lib": ["es2023"], "rootDir": ".", "rootDirs": [".", "./dist-schema/bin/"], "paths": {