summaryrefslogtreecommitdiff
path: root/date-fns/examples/babel/webpack.config.js
blob: ec5400330b1cdef8dcfb82edb9c69a74f829a81a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  entry: './example.js',
  output: {
    path: './dist',
    filename: 'example.js'
  },
  module: {
    loaders: [{
      test: /\.js$/,
      exclude: /node_modules/,
      loader: 'babel-loader'
    }]
  }
}