mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 07:06:28 +08:00
10 lines
313 B
TypeScript
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 };
|
|
};
|