UNPKG

lib-tools

Version:

The lib-tools helps you simplify the build, bundle, test and npm packaging workflows for Typescript, JavaScript, Angular library projects and assets module projects.

18 lines (17 loc) 338 B
import { ProjectConfig } from './project-config'; /** * Workflow configuration. * @additionalProperties true */ export interface WorkflowConfig { /** * Link to schema. */ $schema?: string; /** * The workflow configurations for projects. */ projects: { [key: string]: ProjectConfig; }; }