UNPKG

@module-federation/manifest

Version:

Provide manifest/stats for webpack/rspack MF project .

14 lines (13 loc) 287 B
import { Manifest, Stats } from '@module-federation/sdk'; export type StatsInfo = { stats: Stats; filename: string; }; export type ManifestInfo = { manifest: Manifest; filename: string; }; export type ResourceInfo = { stats: StatsInfo; manifest: ManifestInfo; };