forked from kedro-org/kedro-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
24 lines (24 loc) · 832 Bytes
/
.babelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"plugins": [
"@babel/plugin-transform-runtime",
["@babel/plugin-proposal-class-properties", { "loose": true }],
["@babel/plugin-proposal-private-property-in-object", { "loose": true }],
["@babel/plugin-proposal-private-methods", { "loose": true }]
],
"presets": ["@babel/preset-env", "@babel/preset-react"],
"env": {
"lib": {
"plugins": [
"@babel/plugin-transform-runtime",
["@babel/plugin-proposal-class-properties", { "loose": true }],
[
"@babel/plugin-proposal-private-property-in-object",
{ "loose": true }
],
["@babel/plugin-proposal-private-methods", { "loose": true }],
["babel-plugin-transform-remove-imports", { "test": "\\.(scss)$" }]
],
"presets": ["@babel/preset-env", "@babel/preset-react"]
}
}
}