ping-centre/webpack.config.js

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

2017-02-09 21:58:22 +03:00
"use strict";
module.exports = {
entry: "./src/ping-centre.js",
output: {
path: "./dist",
filename: "ping-centre.min.js",
// exports entry file to a global variable
libraryTarget: "var",
// name of the global variable
library: "PingCentre"
},
};