@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
18 lines (17 loc) • 456 B
TypeScript
/**
* ng-packagr target options for Build Architect. Use to build library projects.
*/
export interface Schema {
/**
* The file path for the ng-packagr configuration file, relative to the current workspace.
*/
project: string;
/**
* The full path for the TypeScript configuration file, relative to the current workspace.
*/
tsConfig?: string;
/**
* Run build when files change.
*/
watch?: boolean;
}