/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/watchCases/cache/new-split-chunk-entry-node/webpack.config.js
27 строк
474 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { bundle: "./index.js", entry: { import: "./entry.js", runtime: "runtime" } }, mode: "production", cache: { type: "memory" }, output: { filename: "[name].js", pathinfo: true, library: { type: "commonjs-module" } }, optimization: { splitChunks: { minSize: 1, chunks: "all", usedExports: false }, minimize: false, concatenateModules: false } };