UNPKG

@hypernym/bundler

Version:
15 lines (14 loc) 497 B
import { Plugin } from "rolldown"; export * from "rolldown/experimental"; export * from "rolldown/plugins"; export * from "rolldown-plugin-dts"; //#region src/plugins/paths/index.d.ts declare function outputPaths(entries: OutputPathsEntry[]): Plugin; //#endregion //#region src/plugins/paths/types.d.ts interface OutputPathsEntry { find: string | RegExp; replacement: string | ((path: string, match: RegExpExecArray | null) => string); } //#endregion export { OutputPathsEntry, outputPaths };