ping-centre/webpack.config.js

19 строки
332 B
JavaScript
Исходник Обычный вид История

2017-02-09 21:58:22 +03:00
"use strict";
module.exports = {
entry: "./src/ping-centre.js",
output: {
2017-02-15 23:53:13 +03:00
path: "/dist",
2017-02-09 21:58:22 +03:00
filename: "ping-centre.min.js",
library: "PingCentre"
},
2017-02-10 22:59:11 +03:00
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: "babel-loader",
query: {presets: ["es2015"]}
}]
}
2017-02-09 21:58:22 +03:00
};