From 6346f82a0a4f611090567023bac5bf172e02258f Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 7 Mar 2022 14:26:35 +0100 Subject: [PATCH] Updated target in tsconfig to es2019 --- tsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d9994741..655fb804 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,15 +17,14 @@ "skipLibCheck": true, "sourceMap": true, "strict": true, - "target": "esnext", + "target": "es2019", "forceConsistentCasingInFileNames": true, "esModuleInterop": true, "resolveJsonModule": true, "isolatedModules": true }, "exclude": [ - "node_modules", - "**/*.spec.*" + "node_modules" ], "include": [ "*.d.ts",