From ab9e6675cf3a360ff6bd4d3103956f3d52a9e995 Mon Sep 17 00:00:00 2001 From: Dmitry Verkhoturov Date: Sat, 7 Mar 2026 21:37:46 +0000 Subject: [PATCH] fix type check failure in @remark42/api package Add skipLibCheck to skip type checking of .d.ts files in node_modules, matching the setting already used by the main remark42 app. Fixes @types/eslint-scope vs @types/eslint type incompatibility. --- frontend/packages/api/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/packages/api/tsconfig.json b/frontend/packages/api/tsconfig.json index e0ad37c0..677336c5 100644 --- a/frontend/packages/api/tsconfig.json +++ b/frontend/packages/api/tsconfig.json @@ -7,7 +7,8 @@ "declaration": true, "isolatedModules": true, "forceConsistentCasingInFileNames": true, - "strict": true + "strict": true, + "skipLibCheck": true }, "include": ["index.ts", "clients", "lib"], "exclude": ["tests", "coverage"]