2016-10-02 14:57:45 +03:00
|
|
|
{
|
2019-12-13 00:37:14 +03:00
|
|
|
"sourceMaps": "inline",
|
2019-03-28 19:22:17 +03:00
|
|
|
"presets": [
|
2019-12-13 00:37:14 +03:00
|
|
|
["@babel/preset-env", {
|
|
|
|
"targets": {
|
|
|
|
"browsers": [
|
|
|
|
"last 2 versions"
|
2019-12-17 02:06:43 +03:00
|
|
|
]
|
2019-12-13 00:37:14 +03:00
|
|
|
},
|
|
|
|
"modules": "commonjs"
|
|
|
|
}],
|
|
|
|
"@babel/preset-typescript",
|
|
|
|
"@babel/preset-flow",
|
|
|
|
"@babel/preset-react"
|
2019-03-28 19:22:17 +03:00
|
|
|
],
|
|
|
|
"plugins": [
|
2019-12-13 05:31:52 +03:00
|
|
|
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
2019-12-13 00:37:14 +03:00
|
|
|
"@babel/plugin-proposal-numeric-separator",
|
|
|
|
"@babel/plugin-proposal-class-properties",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread",
|
|
|
|
"@babel/plugin-transform-flow-comments",
|
|
|
|
"@babel/plugin-syntax-dynamic-import",
|
|
|
|
"@babel/plugin-transform-runtime"
|
2019-03-28 19:22:17 +03:00
|
|
|
]
|
2016-10-02 14:57:45 +03:00
|
|
|
}
|