We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4192f56 commit d4538feCopy full SHA for d4538fe
.babelrc
@@ -0,0 +1,18 @@
1
+{
2
+ "presets": ["react", "es2015"],
3
+ "env": {
4
+ "development": {
5
+ "plugins": [["react-transform", {
6
+ "transforms": [{
7
+ "transform": "react-transform-hmr",
8
+ // if you use React Native, pass "react-native" instead:
9
+ "imports": ["react"],
10
+ // this is important for Webpack HMR:
11
+ "locals": ["module"]
12
+ }]
13
+ // note: you can put more transforms into array
14
+ // this is just one of them!
15
+ }]]
16
+ }
17
18
+}
.gitignore
@@ -0,0 +1,2 @@
+node_modules
+build
0 commit comments