webpack/test/configCases/parsing/requirejs/webpack.config.js

14 lines
173 B
JavaScript
Raw Normal View History

/** @type {import("../../../../").Configuration} */
2018-06-27 16:51:17 +08:00
module.exports = {
module: {
rules: [
{
test: /\.js$/,
parser: {
requireJs: true
}
}
]
}
};