static-cms/.babelrc

47 lines
1006 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-06 18:56:28 -04:00
["env", {
"modules": false,
}],
],
2017-06-12 17:59:58 -07:00
"plugins": [
2018-07-06 18:56:28 -04:00
"transform-object-rest-spread",
"transform-class-properties",
["transform-runtime", {
"useBuiltIns": true,
"useESModules": true,
}],
["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",
],
2018-07-06 18:56:28 -04:00
"env": {
"production": {
"plugins": [
["emotion", {"hoist": true}],
],
},
"development": {
"plugins": [
["emotion", {"sourceMap": true, "autoLabel": true }],
],
},
},
2016-02-25 00:45:56 -08:00
}