custom-app
Version:
ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������
24 lines (23 loc) • 454 B
JavaScript
module.exports = function (wallaby) {
return {
files: [
'src/**/*.ts',
'dist/**/*.js'
],
tests: [
'test/**/*.js'
],
env: {
type: 'node',
runner: 'node'
},
compilers: {
'**/*.+(js|ts)': wallaby.compilers.typeScript({allowJs: true, outDir: './bin'})
},
preprocessors: {
'**/*.jsts': file => file.changeExt('js').content
},
testFramework: 'jest',
debug: true
}
}