demarches-normaliennes/.babelrc

29 lines
538 B
Text
Raw Normal View History

{
"presets": [
["env", {
"modules": false,
"targets": {
// See config/browser.rb
"browsers": [
"> 1%",
2018-08-21 18:21:14 +02:00
"Chrome >= 50",
2018-08-21 18:19:16 +02:00
"IE >= 11",
2018-08-21 18:21:14 +02:00
"Edge >= 14",
"Firefox >= 50",
"Opera >= 40",
2018-08-21 18:19:16 +02:00
"Safari >= 8",
"iOS >= 8"
],
"uglify": true
},
"useBuiltIns": true
}]
],
"plugins": [
"syntax-dynamic-import",
"transform-object-rest-spread",
["transform-class-properties", { "spec": true }]
]
}