-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.babelrc
More file actions
41 lines (41 loc) · 822 Bytes
/
.babelrc
File metadata and controls
41 lines (41 loc) · 822 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"presets": [
"flow",
"react",
"flow",
["env", {
"modules": false,
"targets": {
"browsers": ["last 2 versions", "ie>=11"]
}
}]
],
"plugins": [
"dynamic-import-webpack",
"loadable-components/babel",
"transform-object-rest-spread",
"transform-class-properties",
"transform-remove-strict-mode",
"ramda",
["module-resolver", {
"root": ["./"],
"alias": {
"theme": "@scorum/theme-bootstrap/src",
"services": "@scorum/scorum-services/src",
"bip39": "@scorum/bip39",
"modules": "./node_modules"
}
}]
],
"ignore": [
"firebase"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs",
"babel-plugin-transform-ensure-ignore"
]
}
}
}