esbuild-plugin-rdi
Version:
ESBuild plugin to remove duplicate require statements from minified build.
11 lines (8 loc) • 345 B
text/typescript
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 };