mirror of
https://github.com/versia-pub/server.git
synced 2026-06-14 03:49:17 +02:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import * as z from "zod";
|
|
import { ConfigSchema } from "./index.ts";
|
|
|
|
const jsonSchema = z.toJSONSchema(ConfigSchema);
|
|
|
|
console.write(`${JSON.stringify(jsonSchema, null, 4)}\n`);
|