14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import { fileURLToPath } from 'node:url';
|
|
|
|
export type BuildFlags = {
|
|
distribution: 'browser' | 'desktop';
|
|
mode: 'development' | 'production';
|
|
channel: 'stable' | 'beta' | 'canary' | 'internal';
|
|
coverage?: boolean;
|
|
localBlockSuite?: string;
|
|
};
|
|
|
|
export const projectRoot = fileURLToPath(
|
|
new URL('../../../../', import.meta.url)
|
|
);
|