You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/wallaby.conf.js

31 lines
588 B

module.exports = function (wallaby)
{
return {
files: [
'tsconfig.json',
'src/**/*.ts*',
'src/**/*.tsx*',
'src/**/*.js*',
'__test__/**/*.util.ts',
],
tests: ['__test__/**/*.test.ts*'],
compilers: {
'**/*.ts?(x)': wallaby.compilers.typeScript({
module: 'commonjs',
jsx: 'React'
})
},
env: {
type: 'node',
runner: 'node'
},
testFramework: 'jest',
debug: true
};
};