2020-01-15 21:00:11 +01:00
|
|
|
module.exports = {
|
2022-12-09 13:28:29 +01:00
|
|
|
sourceMaps: true,
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
targets: [
|
|
|
|
"last 2 Chrome versions",
|
|
|
|
"last 2 Firefox versions",
|
|
|
|
"last 2 Safari versions",
|
|
|
|
"last 2 Edge versions",
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
2020-01-28 13:48:27 +01:00
|
|
|
"@babel/preset-typescript",
|
2021-01-27 15:50:00 +01:00
|
|
|
"@babel/preset-react",
|
2020-01-28 13:48:27 +01:00
|
|
|
],
|
2022-12-09 13:28:29 +01:00
|
|
|
plugins: [
|
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",
|
2021-01-27 15:50:00 +01:00
|
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator",
|
2023-01-04 16:15:49 +01:00
|
|
|
|
|
|
|
// transform logical assignment (??=, ||=, &&=). preset-env doesn't
|
|
|
|
// normally bother with these (presumably because all the target
|
|
|
|
// browsers support it natively), but they make our webpack version (or
|
|
|
|
// something downstream of babel, at least) fall over.
|
|
|
|
"@babel/plugin-proposal-logical-assignment-operators",
|
|
|
|
|
2020-01-28 13:48:27 +01:00
|
|
|
"@babel/plugin-syntax-dynamic-import",
|
2021-01-27 15:50:00 +01:00
|
|
|
"@babel/plugin-transform-runtime",
|
|
|
|
],
|
2020-01-15 21:00:11 +01:00
|
|
|
};
|