signoz/frontend/.babelrc
pal-sig 20879dcf2e
Bug(FE): Removed un wanted package from frontend and other enchancements (#386)
* fix(bug): removed scss loaded both in webpack config

* chore(bug): some unwanted package.json is removed

* chore(bable): babelrc is updated

* chore(node-version): node version is updated in the nvm

* chore(bug): gulp file is removed

* feat(UI): web vitals is added in the development env
2021-11-22 12:18:29 +05:30

24 lines
342 B
Plaintext

{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"react-hot-loader/babel",
"@babel/plugin-proposal-class-properties",
[
"babel-plugin-styled-components",
{
"pure": true,
"minify": true
}
]
],
"env": {
"production": {
"presets": ["minify"]
}
}
}