react-kiwi-dropdown
Version:
A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.
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
}
}