angular-cli/packages/@angular/cli/custom-typings.d.ts
Mike Brocchi 9f77c868d2 feat(@angular/cli): Update command runner.
This change removes the dependency of the ember-cli command structure.
2018-03-06 17:57:38 -05:00

29 lines
735 B
TypeScript

interface IWebpackDevServerConfigurationOptions {
contentBase?: boolean | string | 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 } | string | boolean;
inline?: boolean;
https?: boolean;
key?: string;
cert?: string;
overlay?: boolean | { errors: boolean, warnings: boolean };
public?: string;
disableHostCheck?: boolean;
}
declare module 'yargs-parser';