tspublish/ts/interfaces/tspublish.ts

14 lines
300 B
TypeScript
Raw Normal View History

export interface ITsPublishJson {
/**
* the order assures that a project is compiled before another project
*/
order: number;
name: string;
dependencies: string[];
registries: string[];
/**
* allows the sepcification of bin names that invoke cli scripts
*/
bin: string[];
}