From 3e403ea10bafbf53ae95b79321abc98031f23269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 29 Dec 2022 17:56:39 +0100 Subject: [PATCH] :wrench: Update `tsconfig.json` --- tsconfig.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 4988594..7469d24 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,25 +1,25 @@ { "compilerOptions": { - "lib": [ - "es2017", - "es2019" - ], - "types": [ - "node", - ], - "module": "commonjs", - "noImplicitAny": true, - "removeComments": true, - "strictNullChecks": true, "strict": true, - "preserveConstEnums": true, - "resolveJsonModule": true, - "declaration": true, - "outDir": "./dist/", + "module": "commonjs", + "moduleResolution": "node", "target": "es2019", - "sourceMap": true, - "esModuleInterop": true, + "lib": ["es2019", "es2020", "es2022.error"], + "removeComments": true, "useUnknownInCatchVariables": false, + "forceConsistentCasingInFileNames": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noUnusedLocals": true, + "strictNullChecks": true, + "preserveConstEnums": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "incremental": true, + "declaration": true, + "sourceMap": true, + "skipLibCheck": true, + "outDir": "./dist/", }, "include": [ "credentials/**/*",