mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 00:55:16 +00:00
30 lines
583 B
Plaintext
30 lines
583 B
Plaintext
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"exclude": ["@babel/plugin-transform-async-to-generator", "@babel/plugin-transform-arrow-functions"],
|
|
"corejs": "2",
|
|
"useBuiltIns": "usage"
|
|
}
|
|
],
|
|
"@babel/preset-react",
|
|
"@babel/preset-typescript"
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-proposal-class-properties",
|
|
"@babel/plugin-transform-object-assign",
|
|
[
|
|
"babel-plugin-transform-builtin-extend",
|
|
{
|
|
"globals": ["Error"]
|
|
}
|
|
]
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"plugins": ["istanbul"]
|
|
}
|
|
}
|
|
}
|