Icard/angular-clarity-master(work.../node_modules/@schematics/angular/universal/schema.d.ts

31 lines
695 B
TypeScript
Raw Normal View History

2024-07-16 14:55:36 +00:00
/**
* Pass this schematic to the "run" command to set up server-side rendering for an app.
*/
export interface Schema {
/**
* The application identifier to use for transition.
* @deprecated This option is no longer used.
*/
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;
}