{ "presets": ["env", "react", "stage-0"], "plugins": [ "add-module-exports", "transform-runtime", "transform-decorators-legacy", "transform-react-display-name", "transform-proto-to-assign", "transform-class-properties", [ "inline-react-svg", { "svgo": { "plugins": [ { "removeAttrs": { "attrs": ["stroke", "fill"] } } ] } } ], [ "transform-es2015-classes", { "loose": true } ], [ "module-resolver", { "root": ["./src"], "alias": { "components": "./src/components", "containers": "./src/containers", "actions": "./src/redux/actions", "actionCreators": "./src/redux/actionCreators", "reducers": "./src/redux/reducers", "helpers": "./src/helpers", "mocks": "./src/__mocks__", "static": "./static" } } ] ], "env": { "development": { "plugins": [["react-hot-loader/babel"], ["transform-flow-strip-types"]] }, "production": { "plugins": ["transform-flow-strip-types"] } } }