Johannes Loher
b9347ba20e
It's not needed and adds about 2 seconds build time. Additionally, update all dependencies.
15 lines
322 B
JavaScript
15 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({})],
|
|
};
|