We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecc06a3 commit 1e1a500Copy full SHA for 1e1a500
1 file changed
packages/opencode/src/config/config.ts
@@ -247,9 +247,9 @@ export const Info = Schema.Struct({
247
.annotate({ identifier: "Config" })
248
.pipe(
249
withStatics((s) => ({
250
- zod: (zod(s) as unknown as z.ZodObject<any>)
251
- .strict()
252
- .meta({ ref: "Config" }) as unknown as z.ZodType<DeepMutable<Schema.Schema.Type<typeof s>>>,
+ zod: (zod(s) as unknown as z.ZodObject<any>).strict().meta({ ref: "Config" }) as unknown as z.ZodType<
+ DeepMutable<Schema.Schema.Type<typeof s>>
+ >,
253
})),
254
)
255
0 commit comments