···1616 */
1717 comments?: boolean;
1818 /**
1919+ * Configuration for date handling in generated Zod schemas.
2020+ *
2121+ * Controls how date values are processed and validated using Zod's
2222+ * date validation features.
2323+ */
2424+ dates?: {
2525+ /**
2626+ * Whether to include timezone offset information when handling dates.
2727+ *
2828+ * When enabled, date strings will preserve timezone information.
2929+ * When disabled, dates will be treated as local time.
3030+ *
3131+ * @default false
3232+ */
3333+ offset?: boolean;
3434+ };
3535+ /**
1936 * Configuration for reusable schema definitions.
2037 *
2138 * Controls generation of shared Zod schemas that can be referenced across
···156173 * @default true
157174 */
158175 comments: boolean;
176176+ /**
177177+ * Configuration for date handling in generated Zod schemas.
178178+ *
179179+ * Controls how date values are processed and validated using Zod's
180180+ * date validation features.
181181+ */
182182+ dates: {
183183+ /**
184184+ * Whether to include timezone offset information when handling dates.
185185+ *
186186+ * When enabled, date strings will preserve timezone information.
187187+ * When disabled, dates will be treated as local time.
188188+ *
189189+ * @default false
190190+ */
191191+ offset: boolean;
192192+ };
159193 /**
160194 * Configuration for reusable schema definitions.
161195 *