@schematics/angular
Version:
Schematics specific to Angular
17 lines (16 loc) • 354 B
TypeScript
export type Schema = {
/**
* The package to be added.
*/
package?: string;
/**
* The name of the project.
*/
project: string;
/**
* Skip the automatic installation of packages. You will need to manually install the
* dependencies later.
*/
skipInstall?: boolean;
[property: string]: any;
};