@module-federation/sdk 0.0.0-next-20250708134245 → 0.0.0-next-20250709032753
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/index.d.ts
CHANGED
|
@@ -2,8 +2,7 @@ export * from './constant';
|
|
|
2
2
|
export * from './types';
|
|
3
3
|
export * from './utils';
|
|
4
4
|
export { generateSnapshotFromManifest, isManifestProvider, simpleJoinRemoteEntry, inferAutoPublicPath, } from './generateSnapshotFromManifest';
|
|
5
|
-
export
|
|
6
|
-
export type { Logger } from './logger';
|
|
5
|
+
export * from './logger';
|
|
7
6
|
export * from './env';
|
|
8
7
|
export * from './dom';
|
|
9
8
|
export * from './node';
|
|
@@ -198,6 +198,10 @@ export interface ModuleFederationPluginOptions {
|
|
|
198
198
|
externalRuntime?: boolean;
|
|
199
199
|
provideExternalRuntime?: boolean;
|
|
200
200
|
asyncStartup?: boolean;
|
|
201
|
+
/**
|
|
202
|
+
* Enable reconstructed lookup for node_modules paths
|
|
203
|
+
*/
|
|
204
|
+
nodeModulesReconstructedLookup?: boolean;
|
|
201
205
|
/**
|
|
202
206
|
* Options related to build optimizations.
|
|
203
207
|
*/
|