UNPKG

454 BTypeScriptView Raw
1import { AppProjectConfig } from './app-project-config';
2import { LibProjectConfig } from './lib-project-config';
3/**
4 * @additionalProperties true
5 */
6export interface AngularBuildConfig {
7 /**
8 * Link to schema.
9 */
10 $schema?: string;
11 /**
12 * The library project configurations.
13 */
14 libs: LibProjectConfig[];
15 /**
16 * The application project configurations.
17 */
18 apps: AppProjectConfig[];
19}