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

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