UNPKG

596 BTypeScriptView Raw
1/**
2 * This file was automatically generated.
3 * DO NOT MODIFY BY HAND.
4 * Run `yarn special-lint-fix` to update
5 */
6
7export interface LoaderOptionsPluginOptions {
8 /**
9 * Whether loaders should be in debug mode or not. debug will be removed as of webpack 3
10 */
11 debug?: boolean;
12 /**
13 * Where loaders can be switched to minimize mode
14 */
15 minimize?: boolean;
16 /**
17 * A configuration object that can be used to configure older loaders
18 */
19 options?: {
20 /**
21 * The context that can be used to configure older loaders
22 */
23 context?: string;
24 [k: string]: any;
25 };
26 [k: string]: any;
27}