mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 12:20:40 +08:00

* 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
24 lines
342 B
Plaintext
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"]
|
|
}
|
|
}
|
|
}
|