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

* chore: added jsx-runtime plugin in eslint tsconfig Signed-off-by: GermaVinsmoke <vaibhav1180@gmail.com> * chore: updated react imports Signed-off-by: GermaVinsmoke <vaibhav1180@gmail.com> * chore: renamed redux dispatch Signed-off-by: GermaVinsmoke <vaibhav1180@gmail.com> * fix: build is fixed --------- Signed-off-by: GermaVinsmoke <vaibhav1180@gmail.com> Co-authored-by: Palash Gupta <palashgdev@gmail.com>
17 lines
279 B
Plaintext
17 lines
279 B
Plaintext
{
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
["@babel/preset-react", { "runtime": "automatic" }],
|
|
"@babel/preset-typescript"
|
|
],
|
|
"plugins": [
|
|
"react-hot-loader/babel",
|
|
"@babel/plugin-proposal-class-properties"
|
|
],
|
|
"env": {
|
|
"production": {
|
|
"presets": ["minify"]
|
|
}
|
|
}
|
|
}
|