From e9596e4a29c81051d4f45286f1d70908879cdc8e Mon Sep 17 00:00:00 2001 From: figorr <77553975+figorr@users.noreply.github.com> Date: Sat, 22 Jun 2024 00:53:18 +0200 Subject: [PATCH] Update tsconfig.json Update --- tsconfig.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index cfd5d3a..b046c55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,10 @@ { "compilerOptions": { - "target": "es2017", - "module": "esnext", + "target": "es2020", // Actualizado a ES2020, o la versión más reciente que soporte tu código + "module": "es2020", // Actualizado a ES2020 modules "moduleResolution": "node", "lib": [ - "es2017", + "es2020", // Actualizado a ES2020 "dom", "dom.iterable" ], @@ -16,6 +16,7 @@ "noImplicitAny": false, "skipLibCheck": true, "resolveJsonModule": true, - "experimentalDecorators": true + "experimentalDecorators": true, + "importHelpers": true // Agregado para importar las funciones de ayuda de tslib } -} \ No newline at end of file +}