* removed rewire. now using babel-rewire instead * implemented more tests * changed some eslint params * linting * linting * coverage on getChant Co-authored-by: Marcus Netz <marcus.netz@godyo.com>
17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'babel-plugin-rewire',
|
|
[
|
|
'module-resolver',
|
|
{
|
|
root: ['.'],
|
|
alias: {
|
|
'@Lib': './lib',
|
|
'@dsabot': './functions',
|
|
'@Commands': './commands',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|