{ "presets": [ "react", ["env", { "modules": false, }], ], "plugins": [ "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/", } }], "inline-svg", ], "env": { "production": { "plugins": [ ["emotion", {"hoist": true}], ], }, "development": { "plugins": [ ["emotion", {"sourceMap": true, "autoLabel": true }], ], }, }, }