From 06058cfc241d98d60490857a40fad0dc33ed0a0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Wed, 12 May 2021 11:45:01 +0200 Subject: [PATCH] Upgrading Typescript target from ES2015 to ES2017. --- front/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/tsconfig.json b/front/tsconfig.json index fea8fd54..ce16ffb5 100644 --- a/front/tsconfig.json +++ b/front/tsconfig.json @@ -4,7 +4,7 @@ "sourceMap": true, "moduleResolution": "node", "module": "CommonJS", - "target": "ES2015", + "target": "ES2017", "declaration": false, "downlevelIteration": true, "jsx": "react",