2020-01-15 21:00:11 +01:00
|
|
|
module.exports = {
|
2020-01-28 13:48:27 +01:00
|
|
|
"sourceMaps": true,
|
|
|
|
"presets": [
|
|
|
|
["@babel/preset-env", {
|
2020-01-28 15:21:26 +01:00
|
|
|
"targets": [
|
|
|
|
"last 2 Chrome versions", "last 2 Firefox versions", "last 2 Safari versions"
|
|
|
|
],
|
2020-01-28 13:48:27 +01:00
|
|
|
}],
|
|
|
|
"@babel/preset-typescript",
|
|
|
|
"@babel/preset-flow",
|
|
|
|
"@babel/preset-react"
|
|
|
|
],
|
|
|
|
"plugins": [
|
2020-01-28 17:46:02 +01:00
|
|
|
["@babel/plugin-proposal-decorators", {legacy: true}],
|
2020-01-28 13:48:27 +01:00
|
|
|
"@babel/plugin-proposal-export-default-from",
|
|
|
|
"@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"
|
|
|
|
]
|
2020-01-15 21:00:11 +01:00
|
|
|
};
|