1 | import * as webpack from 'webpack';
|
2 | export interface IOptions {
|
3 | packagePath?: string;
|
4 | corePath?: string;
|
5 | staticUrl?: string;
|
6 | mode?: 'development' | 'production';
|
7 | devtool?: string;
|
8 | watchMode?: boolean;
|
9 | }
|
10 | declare function generateConfig({ packagePath, corePath, staticUrl, mode, devtool, watchMode }?: IOptions): webpack.Configuration[];
|
11 | export default generateConfig;
|