webpack/test/configCases/resolve/only-module/webpack.config.js

14 lines
228 B
JavaScript

const path = require("path");
/** @type {import("../../../../").Configuration} */
module.exports = {
resolve: {
alias: [
{
alias: path.resolve(__dirname, "a/1.js"),
name: "./b",
onlyModule: true
}
]
}
};