esbuild-plugin-rdi
Version:
ESBuild plugin to remove duplicate require statements from minified build.
8 lines (7 loc) • 317 B
TypeScript
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;