/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/errors/multi-entry-missing-module/webpack.config.js
20 строк
414 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const IgnorePlugin = require("../../../../").IgnorePlugin; /** @type {import("../../../../").Configuration} */ module.exports = { entry: { a: "./intentionally-missing-module.js", b: ["./intentionally-missing-module.js"], bundle0: ["./index"] }, output: { filename: "[name].js" }, plugins: [ new IgnorePlugin({ resourceRegExp: new RegExp(/intentionally-missing-module/) }) ] };