import { FileReference, PathReference } from '../filesystem'; export interface ModuleDeclaration { source: string; symbol: string; alias?: string; } export interface Project { basePath: PathReference; tsconfig: FileReference; identifier?: string | number; webpack?: FileReference; workingPath?: PathReference; environment?: string; applicationModule?: ModuleDeclaration; }