mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-01 14:19:40 +08:00
9 lines
239 B
TypeScript
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;
|
|
};
|