import * as path from 'path'; import * as webpack from 'webpack'; import * as merge from 'webpack-merge'; import { config as configBase } from '../webpack.config'; export const config: webpack.Configuration = merge(configBase, { output: { libraryTarget: 'umd', path: path.resolve(__dirname, '../../../lib') }, plugins: [] });