We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
z.any
any
// generator.ts:69-90 // Review model file generation loop for (const m of models) { const content = generateModelFileInline(m, [...models, ...types], enumMap, modelMap, config); const filePath = resolvePath(outputDir, `model_${m.name}.ts`); await writeTsFile({ filePath, content, config }); modelFiles.push(filePath); } 2. Configuration ```ts // generator.ts:24-45 // Expand config options for granular control const config: Config = { // Add new options: // - relationshipFlatteningLevel // - typeGenerationDetail // - importStrategy // - cacheStrategy }
// libs/utils/writeTsFile.ts // Add pre-write cleanup and logging export async function writeTsFile({ filePath, content, config, }: { filePath: string; content: string; config: Config; })
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Performance and Accuracy Improvements
Current Problems
z.any
andany
types in generated schemasGoals
Performance
Accuracy
z.any
in schema generationCode Organization
Key Areas to Focus
Code References
The text was updated successfully, but these errors were encountered: