mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-14 12:41:30 +00:00
12 lines
435 B
JavaScript
12 lines
435 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'
|
||
|
],
|
||
|
excludes: ['*/mirage/**/*', '*/tests/**/*', '*/config/**/*', '*/public/**/*', '*/vendor/**/*', '*/app/actions/**']
|
||
|
};
|