You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* dependencies of the entrypoint that should be evaluated at startup
2005
2020
*/
2006
2021
dependencies: Dependency[];
2007
2022
2023
+
/**
2024
+
* dependencies of the entrypoint that should be included by not evaluated
2025
+
*/
2026
+
includeDependencies: Dependency[];
2027
+
2008
2028
/**
2009
2029
* options of the entrypoint
2010
2030
*/
@@ -5390,6 +5410,49 @@ declare class ProvidePlugin {
5390
5410
*/
5391
5411
apply(compiler: Compiler): void;
5392
5412
}
5413
+
declareclassProvideSharedPlugin{
5414
+
constructor(options: ProvideSharedPluginOptions);
5415
+
5416
+
/**
5417
+
* Apply the plugin
5418
+
*/
5419
+
apply(compiler: Compiler): void;
5420
+
}
5421
+
declareinterfaceProvideSharedPluginOptions{
5422
+
/**
5423
+
* Modules that should be provided as shared modules to the share scope. When provided, property name is used as share key, otherwise share key is automatically inferred from request.
5424
+
*/
5425
+
provides: Provides;
5426
+
5427
+
/**
5428
+
* Share scope name used for all provided modules (defaults to 'default').
0 commit comments