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

34 lines
490 B

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