summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
blob: c115fd970262a8cb5746a087d88e40af2fd705b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = [
  {
    entry: './src/fastdom-strict.js',
    output: {
      filename: 'fastdom-strict.js',
      library: 'fastdom',
      libraryTarget: 'umd'
    },

    externals: {
      '../fastdom': 'fastdom'
    }
  }
];