2016-10-02 13:57:45 +02:00
|
|
|
{
|
2019-12-12 22:37:14 +01:00
|
|
|
"sourceMaps": "inline",
|
2019-03-28 17:22:17 +01:00
|
|
|
"presets": [
|
2019-12-12 22:37:14 +01:00
|
|
|
["@babel/preset-env", {
|
|
|
|
"targets": {
|
|
|
|
"browsers": [
|
|
|
|
"last 2 versions"
|
2019-12-17 00:06:43 +01:00
|
|
|
]
|
2019-12-12 22:37:14 +01:00
|
|
|
},
|
|
|
|
"modules": "commonjs"
|
|
|
|
}],
|
|
|
|
"@babel/preset-typescript",
|
|
|
|
"@babel/preset-flow",
|
|
|
|
"@babel/preset-react"
|
2019-03-28 17:22:17 +01:00
|
|
|
],
|
|
|
|
"plugins": [
|
2019-12-13 03:31:52 +01:00
|
|
|
["@babel/plugin-proposal-decorators", { "legacy": true }],
|
2019-12-12 22:37:14 +01: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 17:22:17 +01:00
|
|
|
]
|
2016-10-02 13:57:45 +02:00
|
|
|
}
|