learning_ai_common_plat/packages/ollama-client/tsconfig.json
saravanakumardb1 3f808eff56 fix(ollama-client): add explicit Node types to tsconfig
config.ts imports child_process and fs — declare types: ['node']
explicitly instead of relying on root tsconfig inheritance.
2026-03-29 12:48:18 -07:00

11 lines
195 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"types": ["node"]
},
"include": ["src"],
"exclude": ["src/**/*.test.ts"]
}