vue-styleguidist
Version:
Vue components style guide generator
16 lines (15 loc) • 546 B
TypeScript
/// <reference types="webpack-dev-server" />
import { Configuration } from 'webpack';
/**
* Merge two Webpack configs.
*
* In the user config:
* - Ignores given sections (options.ignore).
* - Ignores plugins that shouldn’t be used twice or may cause issues.
*
* @param {object} baseConfig
* @param {object|Function} userConfig
* @param {string} env
* @return {object}
*/
export default function mergeWebpackConfig(baseConfig: Configuration, userConfig: Configuration | ((env: string) => Configuration), env_: string): Configuration;