UNPKG

esbuild-plugin-rdi

Version:
11 lines (8 loc) 345 B
import { Plugin } from 'esbuild'; 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*/ declare const rdiPlugin: (options?: RDIPluginOptions) => Plugin; export { type RDIPluginOptions, rdiPlugin };