From b760fa0ff5037c3a80d4b75e63db8d72956427a0 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 18 Jun 2021 15:30:53 +0100 Subject: [PATCH] Switch typescript target to es2020 as we use new things like Promise.allSettled and it needs it --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 548bbe7fb..3bcac0171 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "esModuleInterop": true, "module": "commonjs", "moduleResolution": "node", - "target": "es2016", + "target": "es2020", "noImplicitAny": false, "sourceMap": true, "outDir": "./lib",