59df2f6856
Update error handling and improve streaming capabilities in the Ollama client and related components. Key changes include: - Simplify error types and improve error handling - Refactor streaming logic to use async generators - Update tool execution and vault indexing - Improve utility functions and types - Update test files to reflect changes
19 lines
457 B
JSON
Executable File
19 lines
457 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ESNext", "DOM"],
|
|
"module": "commonjs",
|
|
"outDir": "./lib",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"types": ["node", "jest"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
},
|
|
"include": ["src/**/*", "main.ts"],
|
|
"typeRoots": ["node_modules/@types", "./src"],
|
|
"exclude": ["node_modules"],
|
|
}
|