1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/crelt/rollup.config.js
2023-08-12 10:32:47 -03:00

13 lines
269 B
JavaScript

import copy from "rollup-plugin-copy"
export default {
input: "index.js",
output: {
file: "dist/index.cjs",
format: "cjs",
exports: "default"
},
plugins: [
copy({targets: [{src: "index.d.ts", dest: "dist", rename: () => "index.d.cts"}]})
]
}