Browse Source
fix(babel): Config babel-preset-env to consider the electron version as well
renovate/lint-staged-8.x
Ben Woosley
7 years ago
No known key found for this signature in database
GPG Key ID: 6EE5F3785F78B345
1 changed files with
4 additions and
1 deletions
-
.babelrc
|
|
@ -1,7 +1,10 @@ |
|
|
|
{ |
|
|
|
"presets": [ |
|
|
|
["env", { |
|
|
|
"targets": { "node": 7 }, |
|
|
|
"targets": { |
|
|
|
"node": 7, |
|
|
|
"browsers": "electron 1.7" |
|
|
|
}, |
|
|
|
"useBuiltIns": true |
|
|
|
}], |
|
|
|
"stage-0", |
|
|
|