From b347f30578f4aa214522c577e7a743593aeb105e Mon Sep 17 00:00:00 2001 From: Mauricio Lauffer <443888+mauriciolauffer@users.noreply.github.com> Date: Thu, 21 Sep 2023 19:36:25 +1000 Subject: [PATCH] fix: Fix Types (#1) --- tsconfig.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 890eb1e..5ba23af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,17 +12,13 @@ "sourceMap": true, "declaration": true, "emitDeclarationOnly": false, + "skipLibCheck": true, "baseUrl": ".", "rootDir": "src", "checkJs": true, "allowJs": true, "types": ["node", "jsdom"], }, - "include": [ - "src" -, "types/globals.d.ts" ], - "exclude": [ - "node_modules", - "test" - ] + "include": ["src", "types"], + "exclude": ["node_modules", "test"] }