UNPKG

487 BPlain TextView Raw
1import {FileReference, PathReference} from '../filesystem';
2
3export interface ModuleDeclaration {
4 source: string;
5 symbol: string;
6 alias?: string;
7}
8
9export interface Project {
10 basePath: PathReference;
11 tsconfig: FileReference;
12 identifier?: string | number; // application name or index from angular-cli.json, or null
13 webpack?: FileReference; // optional webpack configuration
14 workingPath?: PathReference;
15 environment?: string;
16 applicationModule?: ModuleDeclaration;
17}