summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 2a119d2ee836d25a460e2469b734c1da7d4c0eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        use: {
          loader: 'babel-loader'
        }
      }
    ]
  }
};