8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
root: path.resolve(__dirname, '..') + path.sep,
|
|
tests: ['test/**/*.js'],
|
|
lib: ['lib/**/*.js']
|
|
};
|