2020-07-27 12:29:58 +08:00
|
|
|
module.exports = {
|
2020-08-19 12:38:26 +08:00
|
|
|
presets: ['@babel/preset-env', '@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
|
|
|
};
|