ds4/rollup.config.js
Johannes Loher b9347ba20e Remove @rollup/plugin-node-resolve
It's not needed and adds about 2 seconds build time.

Additionally, update all dependencies.
2021-07-15 20:09:57 +02:00

16 lines
322 B
JavaScript

// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
const typescript = require("rollup-plugin-typescript2");
module.exports = {
input: "src/module/ds4.ts",
output: {
dir: "dist/module",
format: "es",
sourcemap: true,
},
plugins: [typescript({})],
};