UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

8 lines (7 loc) 298 B
import type { FilterPattern } from "@rollup/pluginutils"; import type { Plugin } from "rollup"; export interface SourcemapsPluginOptions { exclude?: FilterPattern; include?: FilterPattern; } export declare const sourcemapsPlugin: ({ exclude, include }?: SourcemapsPluginOptions) => Plugin;