From 3f808eff5652fd40819a737e31ebcce0e52e2813 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sun, 29 Mar 2026 12:48:18 -0700 Subject: [PATCH] fix(ollama-client): add explicit Node types to tsconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit config.ts imports child_process and fs — declare types: ['node'] explicitly instead of relying on root tsconfig inheritance. --- packages/ollama-client/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ollama-client/tsconfig.json b/packages/ollama-client/tsconfig.json index 5edad813..b74148d4 100644 --- a/packages/ollama-client/tsconfig.json +++ b/packages/ollama-client/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "outDir": "dist", - "rootDir": "src" + "rootDir": "src", + "types": ["node"] }, "include": ["src"], "exclude": ["src/**/*.test.ts"]