2022-04-20 21:49:26 +00:00

15 lines
269 B
TypeScript

export interface Schema {
host: string;
port: number;
ssl: boolean;
sslKey?: string;
sslCert?: string;
proxyUrl?: string;
buildTarget: string;
parallel: boolean;
maxParallel?: number;
withDeps: boolean;
proxyOptions?: object;
watch?: boolean;
}