1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: fix for rollup 3
Author: Yadd <yadd@debian.org>
Bug-Debian: https://bugs.debian.org/1022629
Forwarded: not-needed
Last-Update: 2022-10-26
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -1,5 +1,5 @@
const typescript = require("@rollup/plugin-typescript");
-export default {
+module.exports = {
plugins: [typescript()],
input: 'src/index.ts',
output: [
|