From 7e9f346b7c3695ea101fb122c5a0b6edf9645b64 Mon Sep 17 00:00:00 2001 From: Roman Shtylman Date: Fri, 21 Feb 2025 13:12:35 -0800 Subject: [PATCH] Update tsconfig target to es2022 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 4d3ececf..581cbfec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { /* Basic Options */ - "target": "es2015" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */, + "target": "es2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */, "module": "esnext" /* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, /* Consistent line endings regardless of which OS is used to build */ "newLine": "lf",