From 533aebc2ff50688083ebfce2a76a7a2280c12f21 Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Thu, 28 Oct 2021 18:55:35 +0200 Subject: [PATCH] Bump typescript output version to es2021, to be inline with node 16 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e8aeba8..4e30ca8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,8 +5,8 @@ "removeComments": false, "alwaysStrict": true, "pretty": true, - "target": "es2019", - "lib": ["ESNext"], + "target": "es2021", + "lib": ["ES2021"], "sourceMap": true, "inlineSources": true, "module": "commonjs",