From 1b7eb65502974b0fdca9225e9734053e20a44fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Louren=C3=A7o?= Date: Sun, 31 Jul 2022 16:54:21 -0300 Subject: [PATCH] chore(tsconfig): changed target to es2019 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d8e88dc..e092482 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, - "target": "es2017", + "target": "ES2019", "sourceMap": true, "outDir": "./dist", "baseUrl": "./",