Files
BeWoPlaner/BeWoPlanerMobil/node_modules/rijs/rollup.config.js
Lyndon Jetten fda2c306b5 MoK: Report Viewer hinzugefügt
FaC: Das alte Flag von Terminen, die in die Zeiterfassung übernommen worden sind, wird ebenfalls berücksichtigt.
2023-03-13 19:39:04 +01:00

24 lines
517 B
JavaScript

import nodeResolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import async from 'rollup-plugin-async';
import buble from 'rollup-plugin-buble'
export default {
input: 'client/ripple.js'
, output: {
file: 'client/ripple.bundle.js'
, format: 'iife'
}
, name: 'rijs'
, plugins: [
nodeResolve({ browser: true })
, commonjs({ ignoreGlobal: true })
, async()
, buble({
transforms: {
generator: false
, classes: false
}
})
]
}