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" - ] }