mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-15 23:15:30 +01:00
initial commit, project is ready to start
This commit is contained in:
parent
466dd01327
commit
74232d7671
9 changed files with 14845 additions and 0 deletions
16
.babelrc
Normal file
16
.babelrc
Normal 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"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue