2022-04-18 01:12:13 +00:00
|
|
|
const path = require("path");
|
|
|
|
|
|
|
|
module.exports = {
|
2022-04-16 08:22:01 +00:00
|
|
|
|
2022-04-15 05:11:46 +00:00
|
|
|
entry: {
|
2022-04-17 22:44:52 +00:00
|
|
|
audioshowkit: path.resolve("./src/audioshowkitlib.js"),
|
2022-04-15 05:11:46 +00:00
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
2022-04-16 08:22:01 +00:00
|
|
|
test: /\.m?js$/,
|
|
|
|
exclude: /(node_modules|bower_components)/,
|
|
|
|
use: {
|
|
|
|
loader: "babel-loader",
|
|
|
|
options: {
|
|
|
|
presets: ["@babel/preset-env"]
|
|
|
|
}
|
|
|
|
}
|
2022-04-15 05:11:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.css$/i,
|
2022-04-15 20:34:43 +00:00
|
|
|
use: ["style-loader", "css-loader"],
|
2022-04-16 08:22:01 +00:00
|
|
|
},
|
2022-04-15 05:11:46 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: "[name].js",
|
2022-04-17 22:44:52 +00:00
|
|
|
path: path.resolve("./dist"),
|
2022-04-18 01:12:13 +00:00
|
|
|
library: ["[name]"],
|
|
|
|
clean: true
|
2022-04-16 08:22:01 +00:00
|
|
|
},
|
2022-04-15 05:11:46 +00:00
|
|
|
};
|