UNPKG

esbuild-plugin-rdi

Version:
8 lines (7 loc) 317 B
import type { Plugin } from "esbuild"; export interface RDIPluginOptions { } /** * Remove Duplicate Imports * This plugin prevents building test files by esbuild. DTS may still geenrate type files for the tests with only { } as file content*/ export declare const rdiPlugin: (options?: RDIPluginOptions) => Plugin;