UNPKG

232 BJavaScriptView Raw
1module.exports = function(api) {
2 const presets = [
3 [
4 '@babel/preset-env'
5 ]
6 ];
7 const plugins = [
8 ['istanbul', {'exclude': ['tests/**/*.js']}]
9 ];
10
11 api.cache(true);
12
13 return {
14 presets,
15 plugins
16 };
17};