mirror of https://github.com/webpack/webpack.git
19 lines
251 B
JavaScript
19 lines
251 B
JavaScript
|
/** @type {import('webpack').Configuration} */
|
||
|
const config = {
|
||
|
devtool: "source-map",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.js$/,
|
||
|
use: [
|
||
|
{
|
||
|
loader: require.resolve("./loader.js")
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|