You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
717 B
33 lines
717 B
/**
|
|
* 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;
|
|
}
|