From 5bec920cd0cfc5562a268fec89f1e9ed0d7d8ae6 Mon Sep 17 00:00:00 2001 From: "Micael Levi L. Cavalcante" Date: Sat, 28 Oct 2023 07:59:57 -0400 Subject: [PATCH] chore(tsconfig): changed target to es2021 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e092482..ace9988 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, - "target": "ES2019", + "target": "ES2021", "sourceMap": true, "outDir": "./dist", "baseUrl": "./",