From 1d8cefe221e8cf2ec9af09eb6dc3b02d9ff9f6f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Mon, 27 Jun 2022 12:27:11 +0200 Subject: [PATCH] :wrench: Update `tsconfig.json` --- tsconfig.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9f0cfb1..f143b59 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "lib": [ "es2017", - "es2019.array" + "es2019" ], "types": [ "node", @@ -18,16 +18,12 @@ "outDir": "./dist/", "target": "es2019", "sourceMap": true, - "esModuleInterop": true + "esModuleInterop": true, + "useUnknownInCatchVariables": false, }, "include": [ "credentials/**/*", - "src/**/*", "nodes/**/*", "nodes/**/*.json", - "test/**/*" ], - "exclude": [ - "**/*.spec.ts" - ] }