/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/errors/depend-on-and-runtime/webpack.config.js
45 строк
599 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 = [ { output: { filename: "runtime-to-entrypoint-[name].js" }, entry: { a1: "./a", b1: { runtime: "a1", import: "./b" } } }, { output: { filename: "dependOn-plus-runtime-[name].js" }, entry: { a2: "./a", b2: { runtime: "x2", dependOn: "a2", import: "./b" } } }, { output: { filename: "circular-dependOn-[name].js" }, entry: { a3: { import: "./a", dependOn: "b3" }, b3: { import: "./b", dependOn: "a3" } } } ];