claude-code/utils/settings/schemaOutput.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

8 lines
317 B
TypeScript

import { toJSONSchema } from 'zod/v4'
import { jsonStringify } from '../slowOperations.js'
import { SettingsSchema } from './types.js'
export function generateSettingsJSONSchema(): string {
const jsonSchema = toJSONSchema(SettingsSchema(), { unrepresentable: 'any' })
return jsonStringify(jsonSchema, null, 2)
}