Skip to content

Commit

Permalink
Prettify .babelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
fatboy0112 committed Feb 27, 2017
1 parent bb8fd0e commit bc9b969
Showing 1 changed file with 41 additions and 41 deletions.
82 changes: 41 additions & 41 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
{
"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",
]
} ]
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"
plugins: [
'./build/babel-plugin'
]
},
"coverage": {
"presets": [
[ "env", {
"loose": true,
"targets": { "node": 4 },
"exclude": [
"transform-es2015-block-scoping",
"transform-es2015-classes",
"transform-es2015-for-of"
]
} ]
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"
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
} ]
rollup: {
presets: [
[ 'env', {
loose: true,
targets: { node: 4 },
exclude: [
'transform-es2015-block-scoping',
'transform-es2015-classes',
'transform-es2015-for-of'
],
modules: false
} ]
]
}
}
Expand Down

0 comments on commit bc9b969

Please sign in to comment.