Files
goTorrent/goTorrentWebUI/node_modules/attr-accept/webpack.config.js

21 lines
381 B
JavaScript

{
module.exports = {
entry: "./src/index.js",
output: {
path: __dirname,
filename: "./dist/index.js",
libraryTarget: "commonjs2",
library: "react-attr"
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}
]
}
}
};