2024-10-26 12:08:23 +00:00
|
|
|
export interface ITsPublishJson {
|
2024-11-04 23:33:21 +00:00
|
|
|
/**
|
|
|
|
* the order assures that a project is compiled before another project
|
|
|
|
*/
|
|
|
|
order: number;
|
2024-10-26 12:08:23 +00:00
|
|
|
name: string;
|
|
|
|
dependencies: string[];
|
|
|
|
registries: string[];
|
|
|
|
}
|