- Fixed YAML parse error (unquoted colon in description broke @scalar/json-magic) - Converted orval.config.ts → orval.config.cjs (fixes orval v8 TypeScript config loading) - Codegen now works: zod schemas + React Query hooks regenerated with Gemini types - Added Gemini tag, 4 path groups, 8 schemas to openapi.yaml - lib/integrations-gemini-ai wired: tsconfig refs, api-server package.json dep - Created routes/gemini.ts: CRUD conversations/messages + SSE chat stream + image gen - Mounted /gemini router in routes/index.ts
23 lines
355 B
JSON
23 lines
355 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compileOnSave": false,
|
|
"files": [],
|
|
"references": [
|
|
{
|
|
"path": "./lib/db"
|
|
},
|
|
{
|
|
"path": "./lib/api-zod"
|
|
},
|
|
{
|
|
"path": "./lib/integrations-anthropic-ai"
|
|
},
|
|
{
|
|
"path": "./lib/integrations-gemini-ai"
|
|
},
|
|
{
|
|
"path": "./artifacts/api-server"
|
|
}
|
|
]
|
|
}
|