initial commit, project is ready to start

This commit is contained in:
Daniel Avila 2023-02-04 17:17:17 -05:00
parent 466dd01327
commit 74232d7671
9 changed files with 14845 additions and 0 deletions

16
.babelrc Normal file
View file

@ -0,0 +1,16 @@
{
/*
a preset is a set of plugins used to support particular language features.
The two presets Babel uses by default: es2015, react
*/
"presets": [
"@babel/preset-env", //compiling ES2015+ syntax
"@babel/preset-react" //for react
],
/*
Babel's code transformations are enabled by applying plugins (or presets) to your configuration file.
*/
"plugins": [
"@babel/plugin-transform-runtime"
]
}