Variable configWatchConfigSchemaConst
configWatchConfigSchema: ZodObject<
{
debounceMs: ZodOptional<ZodNumber>;
enabled: ZodOptional<ZodBoolean>;
reindex: ZodOptional<
ZodUnion<
readonly [
ZodLiteral<"issues">,
ZodLiteral<"full">,
ZodLiteral<"rules">,
],
>,
>;
},
$strip,
> = ...
Configuration watch settings.