From fd8d128048701a89e182bcdac0d5c392e237d95f Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Mon, 20 Jan 2020 23:54:52 +0200 Subject: [PATCH] Change tsconfig target to es2020 Node.js 12.9.0 and up should support all es2020 features --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 84c78116..bced5567 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -6,7 +6,7 @@ "allowSyntheticDefaultImports": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, - "target": "es2018", + "target": "es2020", "lib": [ "esnext" ],