2020-07-27 12:29:58 +08:00
|
|
|
module.exports = {
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
'@babel/preset-env',
|
|
|
|
{
|
|
|
|
targets: {
|
|
|
|
node: 'current',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'@babel/preset-typescript',
|
|
|
|
],
|
2020-08-06 14:24:05 +08:00
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-transform-typescript',
|
|
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
|
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
|
|
|
],
|
2020-07-27 12:29:58 +08:00
|
|
|
};
|