From 784378f83f0921ee01681293062e74804adcfd02 Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Wed, 12 Apr 2023 18:29:16 -0600 Subject: [PATCH] [CLEANUP BETA] Update tsconfig to target ES2021 All of our target browsers and Node versions for Ember v5.0 support ES2021, so update our TS version accordingly. (cherry picked from commit 57ead6836a258f44de20670969e0bf6cfaa8089b) --- tsconfig/compiler-options.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig/compiler-options.json b/tsconfig/compiler-options.json index 2b90d78588d..11f2c62d848 100644 --- a/tsconfig/compiler-options.json +++ b/tsconfig/compiler-options.json @@ -2,7 +2,7 @@ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { // Compilation Configuration - "target": "es2017", + "target": "es2021", "sourceMap": true, "baseUrl": "../packages", "rootDir": "../packages",