mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 10:03:32 -04:00
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
15 lines
265 B
JavaScript
15 lines
265 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
['@babel/plugin-proposal-class-properties', { loose: true }],
|
|
],
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
modules: false
|
|
}
|
|
]
|
|
]
|
|
};
|