angular-cli/packages/@angular/cli/custom-typings.d.ts
2017-02-15 12:22:40 +00:00

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;