From 190321c6da810417f650eb920a71eaf0d1313db8 Mon Sep 17 00:00:00 2001 From: Borewit Date: Sun, 6 Feb 2022 13:46:29 +0100 Subject: [PATCH] Update ECMAScript 2017 (ES8) to ECMAScript 2018 (ES9) --- README.md | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c1bdd51..72221e1e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The `peek-readable` contains one class: `StreamReader`, which reads from a [stre ### Compatibility -NPM module is compliant with [ECMAScript 2017 (ES8)](https://en.wikipedia.org/wiki/ECMAScript#8th_Edition_-_ECMAScript_2017). +NPM module is compliant with [ECMAScript 2018 (ES9)](https://en.wikipedia.org/wiki/ECMAScript#9th_Edition_%E2%80%93_ECMAScript_2018). ## Examples diff --git a/tsconfig.json b/tsconfig.json index 227c9643..133d2a8c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "inlineSources": false, "module": "commonjs", "moduleResolution": "node", - "target": "ES2017", + "target": "ES2018", "strict": true } }