Add generator to scaffold Module Federation configuration for a given Angular application
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
export interface Schema {
|
|
appName: string;
|
|
mfeType: 'shell' | 'remote';
|
|
port?: number;
|
|
remotes?: string[];
|
|
skipFormat?: boolean;
|
|
}
|