aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 8b713a6215ec1684af3020da63ef4e5e721890d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const path = require('path');

module.exports = {
  entry: './src/client/javascript/main.js',
  output: {
    path: path.resolve(__dirname, 'src/client/static'),
    filename: 'bundle.js'
  },
  module: {
    rules: [
      {
        test: [/\.js$/],
        exclude: [/node_modules/],
        loader: 'babel-loader',
        options: { presets: ['es2015'] }
      }
    ]
  }
}