From ec7d0c7fbaa34abc40c0a6f30d732f3bf2512917 Mon Sep 17 00:00:00 2001 From: Mattia Belletti Date: Wed, 9 Jul 2025 13:42:25 +0200 Subject: [PATCH] chore: add skipLibCheck to avoid lib errors --- src/client/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/tsconfig.json b/src/client/tsconfig.json index 837590e..83b326d 100644 --- a/src/client/tsconfig.json +++ b/src/client/tsconfig.json @@ -12,6 +12,7 @@ "target": "ESNext", "module": "ESNext", "moduleResolution": "node", + "skipLibCheck": true, "types": [ "vite/client" ],