/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/source-map/loader-source-map/webpack.config.js
20 строк
266 B
Alexander Akait
refactor: update eslint configuration
16 дек 2025, 15:58
Не верифицирован
16 дек 2025, 15:58
0c06680
Код
Авторство
О чём код?
"use strict"; /** @type {import("webpack").Configuration} */ const config = { devtool: "source-map", module: { rules: [ { test: /\.js$/, use: [ { loader: require.resolve("./loader.js") } ] } ] } }; module.exports = config;