14 строки
277 B
JavaScript
14 строки
277 B
JavaScript
|
"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"
|
||
|
},
|
||
|
};
|