2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2018-09-18 19:57:44 +08:00
|
|
|
* This file was automatically generated.
|
|
|
|
* DO NOT MODIFY BY HAND.
|
|
|
|
* Run `yarn special-lint-fix` to update
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-20 16:13:38 +08:00
|
|
|
export interface LoaderOptionsPluginOptions {
|
2018-05-08 12:04:57 +08:00
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Whether loaders should be in debug mode or not. debug will be removed as of webpack 3.
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
debug?: boolean;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* Where loaders can be switched to minimize mode.
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
minimize?: boolean;
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* A configuration object that can be used to configure older loaders.
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
options?: {
|
|
|
|
/**
|
2020-03-09 21:14:44 +08:00
|
|
|
* The context that can be used to configure older loaders.
|
2018-05-08 12:04:57 +08:00
|
|
|
*/
|
|
|
|
context?: string;
|
|
|
|
[k: string]: any;
|
|
|
|
};
|
|
|
|
[k: string]: any;
|
|
|
|
}
|