@coko/server
Version:
Reusable server for use by Coko's projects
12 lines • 462 B
TypeScript
import { z } from 'zod';
declare const builderConfigSchema: z.ZodObject<{
devServer: z.ZodObject<{
ignore: z.ZodArray<z.ZodString>;
inspectorPort: z.ZodNumber;
}, z.core.$strict>;
assetExtensions: z.ZodArray<z.ZodString>;
}, z.core.$strict>;
type BuilderConfig = z.infer<typeof builderConfigSchema>;
declare function loadBuilderConfig(): BuilderConfig;
export default loadBuilderConfig;
//# sourceMappingURL=loadBuilderConfig.d.ts.map