Files
AFFiNE-Mirror/tools/cli/src/config/index.ts
T
2024-06-18 06:01:13 +00:00

9 lines
239 B
TypeScript

export type BuildFlags = {
distribution: 'browser' | 'desktop' | 'admin';
mode: 'development' | 'production';
channel: 'stable' | 'beta' | 'canary' | 'internal';
coverage?: boolean;
localBlockSuite?: string;
entry?: string;
};