mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-25 01:04:14 -05:00
17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
module.exports = {
|
|
env: {
|
|
test: {
|
|
presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
|
|
plugins: [
|
|
['@babel/plugin-transform-react-jsx'],
|
|
[
|
|
'istanbul',
|
|
{
|
|
exclude: ['**/test/**', '**/__test__/**', '**/dist/**'],
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|