mirror of
https://github.com/nextcloud/server.git
synced 2025-02-20 23:38:25 +00:00
27 lines
516 B
JavaScript
27 lines
516 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'@babel/plugin-proposal-class-properties',
|
|
// We need the bundler entry not the web one
|
|
// Jest will otherwise resolve the wrong one
|
|
[
|
|
"module-resolver",
|
|
{
|
|
"alias": {
|
|
"webdav$": "webdav/dist/node/index.js",
|
|
},
|
|
},
|
|
]
|
|
],
|
|
presets: [
|
|
// https://babeljs.io/docs/en/babel-preset-typescript
|
|
'@babel/preset-typescript',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
useBuiltIns: false,
|
|
modules: 'auto',
|
|
},
|
|
],
|
|
],
|
|
}
|