mirror of
https://github.com/nextcloud/server.git
synced 2025-01-30 22:37:01 +00:00
a1cc078c88
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
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',
|
|
},
|
|
],
|
|
],
|
|
}
|