summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 54aaf7520c827071e9fd5efc8842a800f735dc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
    entry: './geshem.js',
    output: {
        path: __dirname,
        filename: 'static/js/bundle.js',
    },
    module: {
        loaders: [
            { test: /\.js$/, exclude: /node_modules/, loader: 'babel?presets[]=react,presets[]=es2015' }
        ]
    }
}