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