mirror of
https://github.com/captbaritone/webamp
synced 2024-11-22 07:40:51 +00:00
19 lines
441 B
JavaScript
19 lines
441 B
JavaScript
module.exports = {
|
|
entry: __dirname,
|
|
output: {
|
|
filename: "bundle.js"
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
loader: 'babel', // 'babel-loader' is also a legal name to reference
|
|
query: {
|
|
presets: ['react', 'es2015']
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|