/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/statsCases/logging-debug/webpack.config.js
24 строки
456 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const LogTestPlugin = require("../../helpers/LogTestPlugin"); /** @type {import("../../../").Configuration} */ module.exports = { mode: "production", entry: "./index", performance: false, module: { rules: [ { test: /index\.js$/, use: require.resolve("../logging/node_modules/custom-loader") } ] }, plugins: [new LogTestPlugin(true)], stats: { colors: true, logging: false, loggingDebug: /custom-loader/ } };