mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
13 lines
269 B
JavaScript
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"}]})
|
|
]
|
|
}
|