You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
19 lines
405 B
6 years ago
|
module.exports = {
|
||
|
babelrc: false,
|
||
|
presets: ['@babel/env'],
|
||
|
plugins: [
|
||
|
['@babel/transform-runtime'],
|
||
|
'@babel/proposal-object-rest-spread',
|
||
|
'@babel/proposal-export-default-from',
|
||
|
'@babel/proposal-export-namespace-from',
|
||
|
[
|
||
|
'@babel/plugin-proposal-decorators',
|
||
|
{
|
||
|
legacy: true
|
||
|
}
|
||
|
],
|
||
|
'@babel/proposal-class-properties',
|
||
|
'add-module-exports'
|
||
|
]
|
||
|
}
|