aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/webpack.config.js
blob: 8ad7ee3b6e16591e4b3809fc0107900698c6536f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
const path = require('path');
const baseConfig = require('../../webpack.config.base')(__dirname);

module.exports = Object.assign({}, baseConfig, {
  output: {
    filename: 'index.js',
    path: path.join(__dirname, 'lib'),
    libraryTarget: 'commonjs2',
  },
});