blob: dfc815ae30b3ce705bb4477768987fbe05112916 (
plain)
1
2
3
4
5
6
7
8
9
10
|
const path = require('path');
module.exports = {
getProjectRoots: () => {
const roots = [];
roots.push(__dirname);
roots.push(path.resolve(__dirname, './app'));
return roots;
},
};
|