forked from footprintanalytics/footprint-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
30 lines (30 loc) · 738 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
25
26
27
28
29
30
{
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-proposal-export-default-from",
["@babel/plugin-proposal-decorators", { "legacy": true }],
["import", { "libraryName": "antd", "libraryDirectory": "lib" }, "ant"],
["react-activation/babel"]
],
"presets": ["@babel/preset-env", "@babel/preset-react"],
"env": {
"development": {
"presets": []
},
"extract": {
"plugins": [
[
"ttag",
{
"extract": {
"output": "locales/metabase-frontend.pot"
},
"discover": ["t", "jt"],
"numberedExpressions": true
}
]
]
}
}
}