/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/extract-source-map/webpack.config.js
74 строки
1 KB
Xiao
feat: extractSourceMap supports HTTP URLs (#19882)
09 сен 2025, 18:52
Не верифицирован
09 сен 2025, 18:52
df204b5
Код
Авторство
О чём код?
"use strict"; const path = require("path"); /** @type {import("../../../../").Configuration[]} */ module.exports = [ { target: "node", entry: "./extract1", devtool: "source-map", module: { rules: [ { extractSourceMap: true } ] } }, { target: "node", entry: "./extract2", devtool: "source-map", module: { rules: [ { extractSourceMap: true } ] } }, { target: "node", entry: "./extract3", devtool: "source-map", module: { rules: [ { extractSourceMap: true } ] } }, { target: "node", entry: "./extract4", devtool: "source-map", experiments: { buildHttp: { allowedUris: [() => true], lockfileLocation: path.resolve(__dirname, "./lock-files/lock.json"), cacheLocation: path.resolve(__dirname, "./lock-files/test"), frozen: false } }, module: { rules: [ { extractSourceMap: true } ] } }, { entry: "./remove-comment", devtool: "source-map", module: { rules: [ { extractSourceMap: true } ] } } ];