Skip to content

Commit 3e7d2a0

Browse files
committedApr 25, 2022
Initial app migration
1 parent 539f849 commit 3e7d2a0

File tree

118 files changed

+9134
-0
lines changed

Some content is hidden

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

118 files changed

+9134
-0
lines changed
 

‎.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"plugins": ["@emotion/babel-plugin", "babel-plugin-transform-glob-import"],
3+
"presets": ["@babel/preset-env", "@babel/preset-react"],
4+
"targets": {
5+
"node": 9
6+
}
7+
}

‎.parcelrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "@parcel/config-default",
3+
"transformers": {
4+
"*.{js,mjs,jsx,cjs,ts,tsx}": [
5+
"@parcel/transformer-js",
6+
"@parcel/transformer-react-refresh-wrap"
7+
]
8+
},
9+
"resolvers": ["@parcel/resolver-glob", "..."]
10+
}

0 commit comments

Comments
 (0)
Please sign in to comment.