Revision 0.9.0 (#2)

- Adds ESM Support
This commit is contained in:
sinclairzx81
2025-01-15 15:34:29 +09:00
committed by GitHub
parent 81275b2a51
commit 6c3f34f5fe
23 changed files with 984 additions and 182 deletions

View File

@@ -27,9 +27,9 @@ THE SOFTWARE.
---------------------------------------------------------------------------*/
import { TSchema, KindGuard, Unknown, type TUnknown } from '@sinclair/typebox'
import * as TypeBox from './typebox'
import * as Valibot from './valibot'
import * as Zod from './zod'
import * as TypeBox from './typebox/index'
import * as Valibot from './valibot/index'
import * as Zod from './zod/index'
/** Converts a Zod, Valibot or TypeBox Type to a TypeBox Type */
// prettier-ignore