webpack/declarations/plugins/LoaderOptionsPlugin.d.ts

28 lines
599 B
TypeScript
Raw Normal View History

/*
* 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
/**
* 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;
/**
* Where loaders can be switched to minimize mode.
2018-05-08 12:04:57 +08:00
*/
minimize?: boolean;
/**
* A configuration object that can be used to configure older loaders.
2018-05-08 12:04:57 +08:00
*/
options?: {
/**
* 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;
}