Daniele Luisetto

Results 12 issues of Daniele Luisetto

Add an option to prefix components exports. Closes #850. ## Features - disabled by default - lowercase exports are ignored - types and interfaces names are replaced (other exports are...

Fixes #60. Closes #77. Adds support for `z.catch` so that the type is not set to `any`. ```ts z.object({ items: z.enum(['a', 'b', 'c']).catch('a'), }).array() ``` Resolves to: ```ts { items:...