From ef41c626efa541ad34aa5db10d6ed915684cd1a5 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 9 May 2025 14:35:09 +0200 Subject: [PATCH] chore: unset skipLibCheck in tsconfig.json (#386) Follow-up for https://github.com/microsoft/playwright-mcp/pull/385#discussion_r2081541865. > `skipLibCheck`: Skip type checking all .d.ts files. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index df8a76c..114ce8b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { "target": "ESNext", - "skipLibCheck": true, "esModuleInterop": true, "moduleResolution": "nodenext", "strict": true,