UNPKG

912 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8export interface Schema {
9 /**
10 * Name or index of related client app.
11 */
12 project: string;
13 /**
14 * The appId to use withServerTransition.
15 */
16 appId?: string;
17 /**
18 * The name of the main entry-point file.
19 */
20 main?: string;
21 /**
22 * The name of the Express server file.
23 */
24 serverFileName?: string;
25 /**
26 * The port for the Express server.
27 */
28 serverPort?: number;
29 /**
30 * The name of the root module file
31 */
32 rootModuleFileName?: string;
33 /**
34 * The name of the root module class.
35 */
36 rootModuleClassName?: string;
37 /**
38 * Skip installing dependency packages.
39 */
40 skipInstall?: boolean;
41}