We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7964d commit 8fa299dCopy full SHA for 8fa299d
.babelrc
@@ -0,0 +1,19 @@
1
+{
2
+ "presets": ["@babel/env", "@babel/react"],
3
+ "plugins": [
4
+ "@babel/plugin-proposal-class-properties",
5
+ "@babel/plugin-transform-runtime"
6
+ ],
7
+ "env": {
8
+ "production": {
9
+ "presets": [
10
+ [
11
+ "@babel/env",
12
+ {
13
+ "modules": false
14
+ }
15
+ ]
16
17
18
19
+}
.gitignore
@@ -0,0 +1,23 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+# testing
+/coverage
+# production
+/build
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
20
21
+npm-debug.log*
22
+yarn-debug.log*
23
+yarn-error.log*
0 commit comments