film-exif/.babelrc

24 lines
284 B
Plaintext
Raw Permalink Normal View History

2018-05-03 14:44:48 -04:00
{
"presets": [
"inferno-app",
2019-01-11 16:32:52 -05:00
["@babel/env", {
2018-05-03 14:44:48 -04:00
"targets": {
"browsers": [
2018-06-06 09:57:40 -04:00
">1%",
2018-05-03 14:44:48 -04:00
"not ie 11",
"not op_mini all"
]
},
"modules": false
}]
2018-05-03 15:23:48 -04:00
],
"plugins": [
["module-resolver", {
"root": ["./src"],
"alias": {
"//": "./"
}
}]
2018-05-03 14:44:48 -04:00
]
}