openreplay/frontend/.babelrc
Delirium 203791f0f6
Remove unused code, refactor frontend and revisit libraries (#2458)
* start frontend thinning

* continue thinning

* removing moment and moment-range

* remove highlightjs

* remove semantic-ui

* ghaida commits to openreplay finally

* unused icons

* unused icons

* unused icons

* fix missing icons

---------

Co-authored-by: Ghaida Bouchaala <ghaida.bouchaala@gmail.com>
2024-08-27 16:15:14 +02:00

20 lines
No EOL
738 B
Text

{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"babel-plugin-react-require",
["@babel/plugin-transform-private-property-in-object", { "loose":true } ],
[ "@babel/plugin-transform-runtime", { "regenerator": true } ],
[ "@babel/plugin-proposal-decorators", { "legacy":true } ],
[ "@babel/plugin-transform-class-properties", { "loose":true } ],
[ "@babel/plugin-transform-private-methods", { "loose": true }],
["prismjs", {
"languages": ["javascript", "css", "bash", "typescript", "jsx", "kotlin", "swift"],
"theme": "default",
"css": true
}]
]
}