Colum Ferry dd51c18d12
feat(angular): init mfe generator (#6209)
Add generator to scaffold Module Federation configuration for a given Angular application
2021-07-02 13:45:36 +01:00

8 lines
141 B
TypeScript

export interface Schema {
appName: string;
mfeType: 'shell' | 'remote';
port?: number;
remotes?: string[];
skipFormat?: boolean;
}