blob: 605189416b6f91e546abbe0f1e0235ac6c9b4bba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/**
* Pass this schematic to the "run" command to set up server-side rendering for an app.
*/
export interface Schema {
/**
* The name of the application folder.
*/
appDir?: string;
/**
* The app identifier to use for transition.
*/
appId?: string;
/**
* The name of the main entry-point file.
*/
main?: string;
/**
* The name of the project.
*/
project: string;
/**
* The name of the root NgModule class.
*/
rootModuleClassName?: string;
/**
* The name of the root NgModule file.
*/
rootModuleFileName?: string;
/**
* Do not install packages for dependencies.
*/
skipInstall?: boolean;
}
|