mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
16 lines
293 B
JavaScript
16 lines
293 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,
|
|
},
|
|
],
|
|
],
|
|
}
|