mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-13 20:21:33 +00:00
14 lines
510 B
JavaScript
14 lines
510 B
JavaScript
module.exports = {
|
|
useBabelInstrumenter: true,
|
|
babelPlugins: [
|
|
'babel-plugin-transform-es2015-destructuring',
|
|
'babel-plugin-transform-es2015-parameters',
|
|
'babel-plugin-transform-async-to-generator',
|
|
'babel-plugin-transform-object-rest-spread',
|
|
'babel-plugin-transform-class-properties'
|
|
],
|
|
includeTranspiledSources: ['ts'],
|
|
reporters: ['lcov', 'html', 'json'],
|
|
excludes: ['*/mirage/**/*', '*/tests/**/*', '*/config/**/*', '*/public/**/*', '*/vendor/**/*', '*/app/actions/**']
|
|
};
|