mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 20:52:06 +08:00
36 lines
805 B
TypeScript
36 lines
805 B
TypeScript
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;
|
|
overlay?: boolean;
|
|
}
|
|
|
|
interface WebpackProgressPluginOutputOptions {
|
|
colors?: boolean;
|
|
chunks?: boolean;
|
|
modules?: boolean;
|
|
reasons?: boolean;
|
|
chunkModules?: boolean;
|
|
}
|
|
|
|
declare var HtmlWebpackPlugin: any;
|
|
declare var LoaderOptionsPlugin: any;
|