From 8a61ea0b7962c853ee4ee5f19a7d19c38b45cc16 Mon Sep 17 00:00:00 2001 From: nev21 <82737406+nev21@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:33:04 -0700 Subject: [PATCH] Add skipLibCheck to TypeDoc compiler options Added 'skipLibCheck' option to compilerOptions. --- typedoc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/typedoc.json b/typedoc.json index cf5f6477..881ec311 100644 --- a/typedoc.json +++ b/typedoc.json @@ -22,7 +22,8 @@ "githubPages": true, "gitRevision": "main", "compilerOptions": { - "stripInternal": true + "stripInternal": true, + "skipLibCheck": true }, "blockTags": [ "@defaultValue", @@ -58,4 +59,4 @@ "@typedef", "@since" ], -} \ No newline at end of file +}