angie
Version:
Angie: A Module-Based NodeJS Web Application Framework in ES6
39 lines (37 loc) • 942 B
JavaScript
const SRC = 'src/**/*.js',
TEST_SRC = 'test/src/**/*.spec.js';
module.exports = function() {
// WallabyJS configuration for the WallabyJS JetBrains/Atom plugin
return {
files: [
{
pattern: 'src/util/scaffold/project.js',
instrument: true,
load: true,
ignore: true
},
'AngieFile.json',
SRC
],
tests: [
{
pattern: 'test/src/util/scaffold/project.spec.js',
instrument: true,
load: true,
ignore: true
},
TEST_SRC
],
env: {
type: 'node'
},
workers: {
recycle: true
},
preprocessors: {
'**/*.js': file => require('babel').transform(file.content, {
sourceMap: true
})
}
};
};