react-kiwi-dropdown
Version:
| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha
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
}
}