Skip to content

Commit d4538fe

Browse files
committed
added dotfiles
1 parent 4192f56 commit d4538fe

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

Diff for: .babelrc

+18
Original file line numberDiff line numberDiff line change
@@ -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+
}

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
build

0 commit comments

Comments
 (0)