/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/source-map-with-profiling-plugin/webpack.config.js
25 строк
454 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; const os = require("os"); const path = require("path"); const webpack = require("../../../../"); /** @type {import("../../../../").Configuration} */ module.exports = { node: { __dirname: false, __filename: false }, entry: { bundle0: ["./index.js"] }, output: { filename: "[name].js" }, plugins: [ new webpack.debug.ProfilingPlugin({ outputPath: path.join(os.tmpdir(), "events.json") }) ], devtool: "source-map" };