2019-07-08 22:11:43 +08:00
|
|
|
const path = require("path");
|
2020-04-20 13:36:55 +08:00
|
|
|
/** @type {import("../../../../").Configuration} */
|
2019-07-08 22:11:43 +08:00
|
|
|
module.exports = {
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
_: [path.resolve(__dirname, "a"), path.resolve(__dirname, "b")]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|