2021-06-26 22:02:00 +02:00
|
|
|
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2021-03-17 12:15:25 +01:00
|
|
|
const typescript = require("rollup-plugin-typescript2");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
input: "src/module/ds4.ts",
|
|
|
|
output: {
|
|
|
|
dir: "dist/module",
|
|
|
|
format: "es",
|
|
|
|
sourcemap: true,
|
|
|
|
},
|
2021-07-15 20:09:57 +02:00
|
|
|
plugins: [typescript({})],
|
2021-03-17 12:15:25 +01:00
|
|
|
};
|