forked from joshuef/peruse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
45 lines (45 loc) · 1.06 KB
/
.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"presets": [
["env", {
"targets": { "node": 8 },
"useBuiltIns": true
}],
"stage-0",
"react"
],
"plugins": ["add-module-exports" ],
"env": {
"production": {
"presets": ["react-optimize"],
"plugins": ["babel-plugin-dev-expression", [ "babel-plugin-webpack-alias", { "config": "./webpack.config.base.js" } ]]
},
"development": {
"plugins": [
"transform-class-properties",
"transform-es2015-classes",
"react-hot-loader/babel",
[ "babel-plugin-webpack-alias", { "config": "./webpack.config.base.js" } ],
["flow-runtime", {
"assert": true,
"annotate": true
}]
]
},
"test" : {
"presets" : [
["env", {
"targets": { "node": 8 },
"useBuiltIns": true
}],
"stage-0",
"es2015",
"react"
],
"plugins": [
"transform-es2015-modules-commonjs",
"transform-class-properties",
"transform-es2015-classes"
]
}
}
}