From 0a96776a475e9901c1f9f3407c726d1d002fb9ef Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Mon, 4 Oct 2021 03:13:22 +0200 Subject: [PATCH] Update tsconfig libs and module * es2018-2020 have wide support on all modern browsers including --- ts/tsconfig.json | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/ts/tsconfig.json b/ts/tsconfig.json index 6a73aca51..2e003c523 100644 --- a/ts/tsconfig.json +++ b/ts/tsconfig.json @@ -17,15 +17,9 @@ "declaration": true, "composite": true, "target": "es6", - "module": "es6", + "module": "es2020", "lib": [ - "es2017", - "es2018.intl", - "es2018.promise", - "es2019.array", - "es2019.object", - "es2020.promise", - "es2019.string", + "es2020", "dom", "dom.iterable" ],