mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
Replace openapi-typescript types-only output with a full TypeScript Axios client generated by openapi-generator-cli. The generated code is committed so IDE support works without running codegen. arc-web consumes the client via bun workspaces. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
323 B
JSON
15 lines
323 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2022"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|