Closed nakasyou closed 1 month ago
When I imported from @valibot/to-json-schema using JSR and Deno, I received an error.
@valibot/to-json-schema
Code:
import { toJsonSchema } from '@valibot/to-json-schema' import { schema } from '../schema/schema.ts' export const makeSchema = async () => { const jsonSchema = toJsonSchema(schema) await Deno.writeTextFile('schema.json', JSON.stringify(jsonSchema, null, 2)) } if (import.meta.main) { await makeSchema() }
The PR will fixes it.
Thank you!
When I imported from
@valibot/to-json-schema
using JSR and Deno, I received an error.Code:
The PR will fixes it.