We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b4a911 commit 302c81eCopy full SHA for 302c81e
custom-typings.d.ts
@@ -0,0 +1,28 @@
1
+interface IWebpackDevServerConfigurationOptions {
2
+ contentBase?: string;
3
+ hot?: boolean;
4
+ historyApiFallback?: 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?: { colors: boolean; };
19
+ inline: boolean;
20
+}
21
+
22
+interface WebpackProgressPluginOutputOptions {
23
+ colors?: boolean;
24
+ chunks?: boolean;
25
+ modules?: boolean;
26
+ reasons?: boolean;
27
+ chunkModules?: boolean;
28
0 commit comments