static-cms/.babelrc

30 lines
644 B
Plaintext
Raw Normal View History

2016-02-25 00:45:56 -08:00
{
"presets": [
2018-02-27 10:19:10 -07:00
"react",
2018-07-03 15:47:15 -04:00
"env",
],
2017-06-12 17:59:58 -07:00
"plugins": [
["module-resolver", {
"root": [
"./src/components"
],
"alias": {
"Actions": "./src/actions/",
"Backends": "./src/backends/",
"Constants": "./src/constants/",
"Formats": "./src/formats/",
"Integrations": "./src/integrations/",
"Lib": "./src/lib/",
"Reducers": "./src/reducers/",
"Redux": "./src/redux/",
"Routing": "./src/routing/",
"ValueObjects": "./src/valueObjects/",
}
2018-01-17 14:09:29 -07:00
}],
2018-07-03 15:47:15 -04:00
"inline-svg",
["inline-import", {
"extensions": ["yml"],
}],
],
2016-02-25 00:45:56 -08:00
}