webpack/test/benchmarkCases/cache-filesystem/webpack.config.js

13 lines
228 B
JavaScript
Raw Permalink Normal View History

"use strict";
/** @type {import("../../../").Configuration} */
2017-01-18 05:26:38 +08:00
module.exports = {
entry: "./index",
cache: {
2025-07-24 04:48:44 +08:00
type: "filesystem",
// For benchmark stability
maxMemoryGenerations: 0,
idleTimeoutForInitialStore: 0
}
2017-03-31 22:00:00 +08:00
};