mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
var path = require('path');
|
|
|
|
module.exports = {
|
|
entry: "./index.js",
|
|
resolve: {
|
|
modulesDirectories: ['test/root1', 'node_modules'],
|
|
root: [
|
|
path.resolve(__dirname, './test/root2'),
|
|
path.resolve(__dirname, './node_modules')
|
|
]
|
|
}
|
|
}; |