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",
|
||||
"compilerOptions": {
|
||||
"outDir": "dist",
|
||||
"rootDir": "src"
|
||||
"rootDir": "src",
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["src/**/*.test.ts"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user