/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/extract-source-map2/webpack.config.js
17 строк
281 B
Xiao
feat: add `extractSourceMap` option to implement the capabilities of loading source maps by comment
27 авг 2025, 18:53
Не верифицирован
27 авг 2025, 18:53
64ce283
Код
Авторство
О чём код?
"use strict"; /** @type {import("../../../../").Configuration} */ module.exports = { target: "node", entry: "./index", devtool: "source-map", module: { rules: [ { test: /\.js$/, extractSourceMap: true, loader: require.resolve("./babel-loader") } ] } };