forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-typings.d.ts
More file actions
34 lines (32 loc) · 784 Bytes
/
custom-typings.d.ts
File metadata and controls
34 lines (32 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
interface IWebpackDevServerConfigurationOptions {
contentBase?: string;
hot?: boolean;
historyApiFallback?: {[key: string]: any} | boolean;
compress?: boolean;
proxy?: {[key: string]: string};
staticOptions?: any;
quiet?: boolean;
noInfo?: boolean;
lazy?: boolean;
filename?: string;
watchOptions?: {
aggregateTimeout?: number;
poll?: number;
};
publicPath?: string;
headers?: { [key: string]: string };
stats?: { [key: string]: boolean };
inline: boolean;
https?: boolean;
key?: string;
cert?: string;
}
interface WebpackProgressPluginOutputOptions {
colors?: boolean;
chunks?: boolean;
modules?: boolean;
reasons?: boolean;
chunkModules?: boolean;
}
declare var HtmlWebpackPlugin: any;
declare var LoaderOptionsPlugin: any;