1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-22 06:17:45 +01:00
openstamanager/.babelrc
Maicol Battistini bba677d522
refactor: 🎨 Migliorata struttura del codice con nuove regole ESLint
Sono state aggiunte nuove regole ESLint per standardizzare il codice
2021-09-07 13:37:18 +02:00

23 lines
559 B
Plaintext

{
"presets": [
["@babel/preset-env", {
"targets": "defaults",
"modules": false,
"loose": true
}],
"@babel/preset-flow"
],
"plugins": [
["@babel/plugin-transform-runtime", { "useESModules": true }],
["@babel/plugin-proposal-class-properties", { "loose": true }],
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "m",
"pragmaFrag": "'['",
"useBuiltIns": true
}
]
]
}