From 4497bf7ce76edbe3f6b8c648161ff38f6778b10b Mon Sep 17 00:00:00 2001 From: Nato Boram Date: Thu, 10 Mar 2022 22:51:02 -0500 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20ESNext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + e2e/tsconfig.json | 2 +- tsconfig.json | 8 ++++---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f465f8..f49251c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this * Updated `gateways.json` * Upgraded to Angular 13 +* Targets ESNext ### Deprecated diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json index 426058e..8c57967 100644 --- a/e2e/tsconfig.json +++ b/e2e/tsconfig.json @@ -4,7 +4,7 @@ "compilerOptions": { "outDir": "../out-tsc/e2e", "module": "commonjs", - "target": "es2018", + "target": "ESNext", "types": [ "jasmine", "jasminewd2", diff --git a/tsconfig.json b/tsconfig.json index d4bf2a1..10841b9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,11 +28,11 @@ "experimentalDecorators": true, "moduleResolution": "node", "importHelpers": true, - "target": "es2015", - "module": "es2020", + "target": "ESNext", + "module": "ESNext", "lib": [ - "es2018", - "dom" + "ESNext", + "DOM" ] }, "angularCompilerOptions": {