⬆️ ESNext

merge-requests/9/merge
Nato Boram 2022-03-10 22:51:02 -05:00
parent 71b337ce7d
commit 4497bf7ce7
No known key found for this signature in database
GPG Key ID: 478E3C64BF88AFFA
3 changed files with 6 additions and 5 deletions

View File

@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
* Updated `gateways.json` * Updated `gateways.json`
* Upgraded to Angular 13 * Upgraded to Angular 13
* Targets ESNext
### Deprecated ### Deprecated

View File

@ -4,7 +4,7 @@
"compilerOptions": { "compilerOptions": {
"outDir": "../out-tsc/e2e", "outDir": "../out-tsc/e2e",
"module": "commonjs", "module": "commonjs",
"target": "es2018", "target": "ESNext",
"types": [ "types": [
"jasmine", "jasmine",
"jasminewd2", "jasminewd2",

View File

@ -28,11 +28,11 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"moduleResolution": "node", "moduleResolution": "node",
"importHelpers": true, "importHelpers": true,
"target": "es2015", "target": "ESNext",
"module": "es2020", "module": "ESNext",
"lib": [ "lib": [
"es2018", "ESNext",
"dom" "DOM"
] ]
}, },
"angularCompilerOptions": { "angularCompilerOptions": {