forked from TheRdMelon/pixelplanet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
28 lines (28 loc) · 789 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
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/typescript",
"@babel/react"
],
"plugins": [
"@babel/transform-flow-strip-types",
["@babel/plugin-proposal-decorators", { "legacy": true }],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
["@babel/plugin-proposal-class-properties", { "loose": true }],
"@babel/proposal-object-rest-spread",
"@babel/transform-react-constant-elements",
"@babel/transform-react-inline-elements",
"transform-react-remove-prop-types",
"transform-react-pure-class-to-function",
]
}