s3-batch-upload
Version:
Super fast batched S3 folder uploads from CLI or API.
25 lines (19 loc) • 362 B
JavaScript
module.exports = function(wallaby) {
return {
files: [
'tsconfig.json',
'src/**/*.*',
'test/**/*.*',
'!test/**/*.spec.ts',
],
tests: ['test/**/*.spec.ts'],
env: {
type: 'node',
runner: 'node',
},
compilers: {
'**/*.ts': wallaby.compilers.babel()
},
testFramework: 'mocha',
};
};