forked from titel-media/node-fetch
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.babelrc
52 lines (52 loc) · 1.14 KB
/
.babelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
env: {
test: {
presets: [
[ 'env', {
loose: true,
targets: { node: 4 },
exclude: [
// skip some almost-compliant features on Node.js v4.x
'transform-es2015-block-scoping',
'transform-es2015-classes',
'transform-es2015-for-of',
]
} ]
],
plugins: [
'./build/babel-plugin'
]
},
coverage: {
presets: [
[ 'env', {
loose: true,
targets: { node: 4 },
exclude: [
'transform-es2015-block-scoping',
'transform-es2015-classes',
'transform-es2015-for-of'
]
} ]
],
plugins: [
[ 'istanbul', { exclude: [ 'src/blob.js', 'build', 'test' ] } ],
'./build/babel-plugin'
]
},
rollup: {
presets: [
[ 'env', {
loose: true,
targets: { node: 4 },
exclude: [
'transform-es2015-block-scoping',
'transform-es2015-classes',
'transform-es2015-for-of'
],
modules: false
} ]
]
}
}
}