-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
25 lines (25 loc) · 936 Bytes
/
.babelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"presets": [["es2015", {"loose": true}], "react", "stage-0"],
"plugins": [
// ["module-resolver", {
// "root": ["./src"],
// "alias": {
// "components": "client/components",
// "types": "client/types.js",
// "ui": "client/components/ui",
// "actions": "client/actions",
// "containers": "client/containers",
// "reducers": "client/reducers",
// "utils": "client/utils",
// "constants": "client/constants.js",
// "store": "client/store.js",
// "svg": "client/svg",
// "widgets": "client/components/widgets",
// "schemas": "server/database/schemas",
// "query": "server/queryUtils"
// }
// }],
["react-hot-loader/babel"],
["transform-runtime"]
]
}