flappyDojo/webpack.config.js

17 lines
282 B
JavaScript

module.exports = {
entry: "./main.js",
output: {
path: __dirname + "/dist",
filename: "bundle.js",
publicPath: "/dist/"
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader"
}
]
}
}