film-exif/.babelrc

25 lines
299 B
Plaintext
Raw Normal View History

2018-05-03 14:44:48 -04:00
{
"presets": [
"inferno-app",
2018-05-03 14:44:48 -04:00
["env", {
"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": [
"external-helpers",
2018-05-03 15:23:48 -04:00
["module-resolver", {
"root": ["./src"],
"alias": {
"//": "./"
}
}]
2018-05-03 14:44:48 -04:00
]
}