mirror of https://github.com/webpack/webpack.git
29 lines
530 B
TypeScript
29 lines
530 B
TypeScript
/**
|
|
* This file was automatically generated.
|
|
* DO NOT MODIFY BY HAND.
|
|
* Run `yarn special-lint-fix` to update
|
|
*/
|
|
|
|
export interface ContainerReferencePlugin {
|
|
/**
|
|
* A list of requests that should be overridable by the host container.
|
|
*/
|
|
overrides?:
|
|
| any[]
|
|
| {
|
|
[k: string]: any;
|
|
};
|
|
/**
|
|
* The libraryTarget of a remote build.
|
|
*/
|
|
remoteType?: string;
|
|
/**
|
|
* A list of remote scopes or namespaces that reference federated Webpack instances.
|
|
*/
|
|
remotes?:
|
|
| any[]
|
|
| {
|
|
[k: string]: any;
|
|
};
|
|
}
|