Files
AFFiNE-Mirror/tools/cli/src/config/index.ts
T

10 lines
313 B
TypeScript

export type BuildFlags = {
distribution: 'web' | 'desktop' | 'admin' | 'mobile' | 'ios' | 'android';
mode: 'development' | 'production';
channel: 'stable' | 'beta' | 'canary' | 'internal';
static: boolean;
coverage?: boolean;
localBlockSuite?: string;
entry?: string | { [key: string]: string };
};