зеркало из https://github.com/nextcloud/viewer.git
20 строки
276 B
JavaScript
20 строки
276 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
'@babel/plugin-syntax-dynamic-import',
|
||
|
[
|
||
|
'@babel/plugin-proposal-class-properties',
|
||
|
{ loose: true }
|
||
|
]
|
||
|
],
|
||
|
presets: [
|
||
|
[
|
||
|
'@babel/preset-env',
|
||
|
{
|
||
|
targets: {
|
||
|
browsers: ['last 2 versions', 'ie >= 11']
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
]
|
||
|
}
|