UNPKG

784 BTypeScriptView Raw
1interface IWebpackDevServerConfigurationOptions {
2 contentBase?: string;
3 hot?: boolean;
4 historyApiFallback?: {[key: string]: any} | boolean;
5 compress?: boolean;
6 proxy?: {[key: string]: string};
7 staticOptions?: any;
8 quiet?: boolean;
9 noInfo?: boolean;
10 lazy?: boolean;
11 filename?: string;
12 watchOptions?: {
13 aggregateTimeout?: number;
14 poll?: number;
15 };
16 publicPath?: string;
17 headers?: { [key: string]: string };
18 stats?: { [key: string]: boolean };
19 inline: boolean;
20 https?: boolean;
21 key?: string;
22 cert?: string;
23}
24
25interface WebpackProgressPluginOutputOptions {
26 colors?: boolean;
27 chunks?: boolean;
28 modules?: boolean;
29 reasons?: boolean;
30 chunkModules?: boolean;
31}
32
33declare var HtmlWebpackPlugin: any;
34declare var LoaderOptionsPlugin: any;