From b4031e1546f032a686e771c43bfa27f272647858 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Wed, 5 Aug 2026 03:19:31 +0300 Subject: [PATCH] Fix: add skipLibCheck to tsconfig.json to resolve compilation error with v18.0.0 Adds `"skipLibCheck": true` to tsconfig.json to prevent type-checking errors from dependency declarations when using TypeScript 18.0.0. Patch generated by poolside/laguna-xs-2.1:free via OpenRouter. --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index fde35ea..b89801c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,9 @@ "noImplicitReturns": true, "noFallthroughCasesInSwitch": true }, + "compilerOptions": { + "skipLibCheck": true + }, "files": [], "include": [], "references": [