| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * 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 related client app. Required in place of "project".
- */
- clientProject: string;
- /**
- * The name of the main entry-point file.
- */
- main?: string;
- /**
- * The name of the root NgModule class.
- */
- rootModuleClassName?: string;
- /**
- * The name of the root NgModule file.
- */
- rootModuleFileName?: string;
- /**
- * When true, does not install packages for dependencies.
- */
- skipInstall?: boolean;
- /**
- * The name of the test entry-point file.
- * @deprecated This option has no effect.
- */
- test?: string;
- /**
- * The name of the TypeScript configuration file for tests.
- * @deprecated This option has no effect.
- */
- testTsconfigFileName?: string;
- /**
- * The name of the TypeScript configuration file.
- */
- tsconfigFileName?: string;
- }
|