schemaOutput.ts
1 import { toJSONSchema } from 'zod/v4' 2 import { jsonStringify } from '../slowOperations.js' 3 import { SettingsSchema } from './types.js' 4 5 export function generateSettingsJSONSchema(): string { 6 const jsonSchema = toJSONSchema(SettingsSchema(), { unrepresentable: 'any' }) 7 return jsonStringify(jsonSchema, null, 2) 8 }