39 lines
886 B
Plaintext
39 lines
886 B
Plaintext
{
|
|
"presets": [
|
|
"react",
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
],
|
|
"plugins": [
|
|
"lodash",
|
|
["babel-plugin-transform-builtin-extend", {
|
|
"globals": ["Error"]
|
|
}],
|
|
["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/",
|
|
}
|
|
}],
|
|
"transform-export-extensions",
|
|
"transform-class-properties",
|
|
"transform-object-rest-spread"
|
|
]
|
|
}
|