UNPKG

456 BTypeScriptView Raw
1/**
2 * ng-packagr target options for Build Architect. Use to build library projects.
3 */
4export interface Schema {
5 /**
6 * The file path for the ng-packagr configuration file, relative to the current workspace.
7 */
8 project: string;
9 /**
10 * The full path for the TypeScript configuration file, relative to the current workspace.
11 */
12 tsConfig?: string;
13 /**
14 * Run build when files change.
15 */
16 watch?: boolean;
17}