esbuild-plugin-dts-bundle-generator
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

esbuild-plugin-dts-bundle-generator

An esbuild plugin to generate bundles of .d.ts definitions using dts-bundle-generator.

Usage

Inside your esbuild build script:

import * as esbuild from 'esbuild';
import esbuildPluginDtsBundleGenerator from 'esbuild-plugin-dts-bundle-generator';

await esbuild.build({
	// ...
	plugins: [esbuildPluginDtsBundleGenerator(/* options */)],
});

Options

Everything should just work out of the box, but there are a couple of options that can be changed:

interface Options {
	/**
	 * Alternate entry points for generating d.ts files.
	 * This follows the same format as `esbuild`'s `entryPoints` option.
	 */
	entryPoints?: Record<string, string> | Array<{ in: string; out: string }>;

	/**
	 * The path to the project tsconfig file.
	 *
	 * If this is not specified, it will try to use the `tsconfig` option provided to `esbuild`.
	 * If neither options were specified, the nearest `tsconfig.json` file will be used.
	 */
	tsconfig?: string;

	/**
	 * ADVANCED CONFIGURATION:
	 *
	 * A function that is called for each entry point file, creating an `EntryPointConfig` to be used by `dts-bundle-generator`.
	 * This function cannot override the `filePath` property.
	 *
	 * @param entrypoint The entrypoint file.
	 * @returns The corresponding `EntryPointConfig`.
	 */
	configureEntryPoint?: (entrypoint: string) => EntryPointConfig;

	/**
	 * The default `OutputOptions` given to `dts-bundle-generator`.
	 * If `configureEntryPoint` returns output options, that will take precedence.
	 */
	outputOptions?: OutputOptions;

	/**
	 * The default `LibrariesOptions` given to `dts-bundle-generator`.
	 * If `configureEntryPoint` returns output options, that will take precedence.
	 */
	librariesOptions?: LibrariesOptions;

	/**
	 * The `CompilationOptions` given to `dts-bundle-generator`.
	 * This cannot override the `entryPoints` property.
	 */
	compilationOptions?: CompilationOptions;
}

Readme

Keywords

Package Sidebar

Install

npm i esbuild-plugin-dts-bundle-generator

Weekly Downloads

3

Version

1.0.1

License

MIT

Unpacked Size

21.9 kB

Total Files

6

Last publish

Collaborators

  • eth-p