mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-27 07:00:28 -04:00
23 lines
413 B
JavaScript
23 lines
413 B
JavaScript
module.exports = {
|
|
env: {
|
|
test: {
|
|
presets: [
|
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
|
],
|
|
plugins: [
|
|
['@babel/plugin-transform-react-jsx'],
|
|
[
|
|
'istanbul',
|
|
{
|
|
exclude: [
|
|
'**/test/**',
|
|
'**/__test__/**',
|
|
'**/dist/**',
|
|
],
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|