Skip to content

Commit a994222

Browse files
committed
first commit
0 parents  commit a994222

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+13607
-0
lines changed

.gitignore

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

babel.config.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
"@babel/preset-env",
5+
{
6+
modules: false,
7+
},
8+
],
9+
"@babel/preset-react",
10+
"@babel/preset-typescript",
11+
],
12+
plugins: [
13+
"@babel/plugin-transform-runtime",
14+
"@babel/plugin-syntax-dynamic-import",
15+
"@babel/plugin-proposal-class-properties",
16+
],
17+
env: {
18+
production: {
19+
only: ["src"],
20+
plugins: [
21+
[
22+
"transform-react-remove-prop-types",
23+
{
24+
removeImport: true,
25+
},
26+
],
27+
"@babel/plugin-transform-react-inline-elements",
28+
"@babel/plugin-transform-react-constant-elements",
29+
],
30+
},
31+
},
32+
};

0 commit comments

Comments
 (0)