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.
This commit is contained in:
parent
f2a94eb82d
commit
3f808eff56
@ -2,7 +2,8 @@
|
|||||||
"extends": "../../tsconfig.base.json",
|
"extends": "../../tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "dist",
|
"outDir": "dist",
|
||||||
"rootDir": "src"
|
"rootDir": "src",
|
||||||
|
"types": ["node"]
|
||||||
},
|
},
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"exclude": ["src/**/*.test.ts"]
|
"exclude": ["src/**/*.test.ts"]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user