16fb2bb919
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
16 lines
335 B
JavaScript
16 lines
335 B
JavaScript
module.exports = {
|
|
presets: [require.resolve('babel-preset-stage-2')],
|
|
plugins: [require.resolve('babel-plugin-external-helpers')],
|
|
env: {
|
|
coverage: {
|
|
plugins: [
|
|
[
|
|
require.resolve('babel-plugin-istanbul'),
|
|
{
|
|
exclude: ['tests/**'],
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|