Add npm and React boilerplate

This commit is contained in:
Lexi / Zoe 2022-05-20 00:00:59 +02:00
parent c60886b65e
commit 00d30ea36b
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
9 changed files with 11849 additions and 131 deletions

20
babel.config.json Normal file
View file

@ -0,0 +1,20 @@
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"last 2 versions",
"not op_mini all"
]
}
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-styled-components"
]
}