From a0167c1be55a363f93f7357c4975c343453f8eb0 Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Sun, 26 Jan 2025 22:43:48 +0000 Subject: [PATCH] chore: enable `skipLibCheck` (#101) Some dependencies ship types which fail with our strictness level. This should skip them so our builds continue to work. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8c96bd7..7e2015a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,6 +13,7 @@ "strict": true, "declaration": true, "declarationMap": true, - "moduleResolution": "bundler" + "moduleResolution": "bundler", + "skipLibCheck": true } }