tspublish/ts/interfaces/tspublish.ts

10 lines
204 B
TypeScript
Raw Permalink 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[];
}