workspaceConfigSchema
const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
$schema: z.ZodOptional<z.ZodString>;
style: z.ZodString;
rsc: z.ZodDefault<z.ZodBoolean>;
tsx: z.ZodDefault<z.ZodBoolean>;
tailwind: z.ZodObject<{
config: z.ZodOptional<z.ZodString>;
css: z.ZodString;
baseColor: z.ZodString;
cssVariables: z.ZodDefault<z.ZodBoolean>;
prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
}, "strip", z.ZodTypeAny, {css: string;
baseColor: string;
cssVariables: boolean;
config?: string | undefined;
prefix?: string | undefined;
}, {css: string;
baseColor: string;
config?: string | undefined;
cssVariables?: boolean | undefined;
prefix?: string | undefined;
}>; iconLibrary: z.ZodOptional<z.ZodString>;
rtl: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
menuColor: z.ZodOptional<z.ZodDefault<z.ZodEnum<["default", "inverted"]>>>;
menuAccent: z.ZodOptional<z.ZodDefault<z.ZodEnum<["subtle", "bold"]>>>;
aliases: z.ZodObject<{
components: z.ZodString;
utils: z.ZodString;
ui: z.ZodOptional<z.ZodString>;
lib: z.ZodOptional<z.ZodString>;
hooks: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {components: string;
utils: string;
ui?: string | undefined;
lib?: string | undefined;
hooks?: string | undefined;
}, {components: string;
utils: string;
ui?: string | undefined;
lib?: string | undefined;
hooks?: string | undefined;
}>; registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
} & {url: z.ZodEffects<z.ZodString, string, string>;
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
}, "strip", z.ZodTypeAny, {url: string;
params?: Record<string, string> | undefined;
headers?: Record<string, string> | undefined;
}, {url: string;
params?: Record<string, string> | undefined;
headers?: Record<string, string> | undefined;
}>]>>>; resolvedPaths: z.ZodObject<{
}, "strict", z.ZodTypeAny, {cwd: z.ZodString;
tailwindConfig: z.ZodString;
tailwindCss: z.ZodString;
utils: z.ZodString;
components: z.ZodString;
lib: z.ZodString;
hooks: z.ZodString;
ui: z.ZodString;
}, "strip", z.ZodTypeAny, {components: string;
ui: string;
cwd: string;
utils: string;
lib: string;
hooks: string;
tailwindConfig: string;
tailwindCss: string;
}, {components: string;
ui: string;
cwd: string;
utils: string;
lib: string;
hooks: string;
tailwindConfig: string;
tailwindCss: string;
}>; tailwind: {
css: string;
baseColor: string;
cssVariables: boolean;
config?: string | undefined;
prefix?: string | undefined;
}; style: string;
rsc: boolean;
tsx: boolean;
aliases: {
components: string;
utils: string;
ui?: string | undefined;
lib?: string | undefined;
hooks?: string | undefined;
}; resolvedPaths: {
components: string;
ui: string;
cwd: string;
utils: string;
lib: string;
hooks: string;
tailwindConfig: string;
tailwindCss: string;
}; $schema?: string | undefined;
iconLibrary?: string | undefined;
rtl?: boolean | undefined;
menuColor?: "default" | "inverted" | undefined;
menuAccent?: "bold" | "subtle" | undefined;
registries?: Record<string, string | {
}, {url: string;
params?: Record<string, string> | undefined;
headers?: Record<string, string> | undefined;
}> | undefined; tailwind: {
css: string;
baseColor: string;
config?: string | undefined;
cssVariables?: boolean | undefined;
prefix?: string | undefined;
}; style: string;
aliases: {
components: string;
utils: string;
ui?: string | undefined;
lib?: string | undefined;
hooks?: string | undefined;
}; resolvedPaths: {
components: string;
ui: string;
cwd: string;
utils: string;
lib: string;
hooks: string;
tailwindConfig: string;
tailwindCss: string;
}; $schema?: string | undefined;
rsc?: boolean | undefined;
tsx?: boolean | undefined;
iconLibrary?: string | undefined;
rtl?: boolean | undefined;
menuColor?: "default" | "inverted" | undefined;
menuAccent?: "bold" | "subtle" | undefined;
registries?: Record<string, string | {
}>>;url: string;
params?: Record<string, string> | undefined;
headers?: Record<string, string> | undefined;
}> | undefined;