UNPKG

926 BTypeScriptView Raw
1/**
2 * Pass this schematic to the "run" command to set up server-side rendering for an app.
3 */
4export interface Schema {
5 /**
6 * The name of the application folder.
7 */
8 appDir?: string;
9 /**
10 * The app identifier to use for transition.
11 */
12 appId?: string;
13 /**
14 * The name of the related client app. Required in place of "project".
15 */
16 clientProject: string;
17 /**
18 * The name of the main entry-point file.
19 */
20 main?: string;
21 /**
22 * The name of the root NgModule class.
23 */
24 rootModuleClassName?: string;
25 /**
26 * The name of the root NgModule file.
27 */
28 rootModuleFileName?: string;
29 /**
30 * When true, does not install packages for dependencies.
31 */
32 skipInstall?: boolean;
33 /**
34 * The name of the TypeScript configuration file.
35 * @deprecated This option has no effect.
36 */
37 tsconfigFileName?: string;
38}