cc580889d2
Update coverage reports and add new validation utilities Add comprehensive validation utilities for Ollama URL and model name Add new API response types and client configuration interfaces Add Logger utility for consistent logging Add validation function for plugin settings Add unit tests for validation functions Update TypeScript configuration Update coverage reports to reflect new code additions ```
19 lines
457 B
JSON
19 lines
457 B
JSON
{
|
|
"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"],
|
|
}
|