From 886a60c12a8968d125b0784369d8dea04bb7a5b6 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 18 Aug 2021 18:22:08 +0200 Subject: [PATCH] set target version of TS to ES2020 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b7ae64e8..0179e267 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "strictNullChecks": true, "noEmit": true, - "target": "es6" + "target": "ES2020" }, "include": ["src/**/*"], }