mirror of
https://github.com/nextcloud/server.git
synced 2025-01-31 06:43:12 +00:00
29a7f7f6ef
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-proposal-class-properties',
|
|
],
|
|
presets: [
|
|
// https://babeljs.io/docs/en/babel-preset-typescript
|
|
'@babel/preset-typescript',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
useBuiltIns: false,
|
|
modules: 'auto',
|
|
},
|
|
],
|
|
],
|
|
}
|