2025-07-16 22:29:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
2020-04-20 15:23:10 +08:00
|
|
|
/** @type {import("../../../").Configuration[]} */
|
2017-01-11 17:51:58 +08:00
|
|
|
module.exports = [
|
|
|
|
{
|
|
|
|
name: "minimal",
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2017-01-11 17:51:58 +08:00
|
|
|
entry: "./index",
|
2019-11-05 17:04:01 +08:00
|
|
|
output: {
|
|
|
|
filename: "minimal.js"
|
|
|
|
},
|
2017-01-11 17:51:58 +08:00
|
|
|
stats: "minimal"
|
|
|
|
},
|
2018-01-19 16:21:00 +08:00
|
|
|
|
2017-01-11 17:51:58 +08:00
|
|
|
{
|
|
|
|
name: "none",
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2017-01-11 17:51:58 +08:00
|
|
|
entry: "./index",
|
2019-11-05 17:04:01 +08:00
|
|
|
output: {
|
|
|
|
filename: "none.js"
|
|
|
|
},
|
2017-01-11 17:51:58 +08:00
|
|
|
stats: false
|
|
|
|
},
|
2018-01-19 16:21:00 +08:00
|
|
|
|
2017-01-11 17:51:58 +08:00
|
|
|
{
|
|
|
|
name: "verbose",
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2017-01-11 17:51:58 +08:00
|
|
|
entry: "./index",
|
2019-11-05 17:04:01 +08:00
|
|
|
output: {
|
|
|
|
filename: "verbose.js"
|
|
|
|
},
|
2017-01-11 17:51:58 +08:00
|
|
|
stats: {
|
|
|
|
entrypoints: true,
|
|
|
|
hash: false,
|
|
|
|
timings: false,
|
2018-01-31 09:34:08 +08:00
|
|
|
builtAt: false,
|
2017-01-11 17:51:58 +08:00
|
|
|
chunks: false,
|
|
|
|
assets: false
|
|
|
|
}
|
|
|
|
}
|
2017-01-11 17:51:58 +08:00
|
|
|
];
|