2020-01-16 04:00:11 +08:00
|
|
|
module.exports = {
|
2020-01-28 20:48:27 +08:00
|
|
|
"sourceMaps": true,
|
|
|
|
"presets": [
|
|
|
|
["@babel/preset-env", {
|
2020-01-28 22:21:26 +08:00
|
|
|
"targets": [
|
2021-03-05 21:17:47 +08:00
|
|
|
"last 2 Chrome versions",
|
|
|
|
"last 2 Firefox versions",
|
|
|
|
"last 2 Safari versions",
|
|
|
|
"last 2 Edge versions",
|
2020-01-28 22:21:26 +08:00
|
|
|
],
|
2020-01-28 20:48:27 +08:00
|
|
|
}],
|
|
|
|
"@babel/preset-typescript",
|
2021-01-27 22:50:00 +08:00
|
|
|
"@babel/preset-react",
|
2020-01-28 20:48:27 +08:00
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"@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 22:50:00 +08:00
|
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator",
|
2020-01-28 20:48:27 +08:00
|
|
|
"@babel/plugin-syntax-dynamic-import",
|
2021-01-27 22:50:00 +08:00
|
|
|
"@babel/plugin-transform-runtime",
|
|
|
|
],
|
2020-01-16 04:00:11 +08:00
|
|
|
};
|