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": {