@module-federation/sdk 0.6.9 → 0.6.10
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/package.json
CHANGED
|
@@ -38,6 +38,10 @@ export type UmdNamedDefine = boolean;
|
|
|
38
38
|
* The name of the runtime chunk. If set a runtime chunk with this name is created or an existing entrypoint is used as runtime.
|
|
39
39
|
*/
|
|
40
40
|
export type EntryRuntime = false | string;
|
|
41
|
+
/**
|
|
42
|
+
* Enable Data Prefetch
|
|
43
|
+
*/
|
|
44
|
+
export type DataPrefetch = boolean;
|
|
41
45
|
export interface ContainerPluginOptions {
|
|
42
46
|
/**
|
|
43
47
|
* Modules that should be exposed by this container. When provided, property name is used as public name, otherwise public name is automatically inferred from request.
|
|
@@ -70,6 +74,7 @@ export interface ContainerPluginOptions {
|
|
|
70
74
|
experiments?: {
|
|
71
75
|
federationRuntime?: false | 'hoisted';
|
|
72
76
|
};
|
|
77
|
+
dataPrefetch?: DataPrefetch;
|
|
73
78
|
}
|
|
74
79
|
/**
|
|
75
80
|
* Modules that should be exposed by this container. Property names are used as public paths.
|