npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bun-plugin-isolated-decl

v0.1.5

Published

[![NPM Version](https://img.shields.io/npm/v/bun-plugin-isolated-decl)](https://www.npmjs.com/package/bun-plugin-isolated-decl)

Downloads

243

Readme

bun-plugin-isolated-decl

NPM Version

A Bun plugin for generating isolated declaration files (.d.ts) from TypeScript sources using the oxc-transformer. This is the Bun-specific version of unplugin-isolated-decl.

Features

  • Ultra-Fast: Generates .d.ts files significantly faster than tsc
  • 🔧 Powered by oxc: Utilizes the efficient oxc-transformer for blazing-fast performance
  • 🔌 Bun Integration: Seamlessly integrates with Bun's build process
  • 🚀 Zero Config: Works out of the box with no configuration required
  • 🎯 Focused Functionality: Optimized for TypeScript 5.5's isolatedDeclarations option
  • 🔄 Ecosystem Compatibility: Bun version of unplugin-isolated-decl

Installation

Install the plugin and its peer dependencies:

bun add -d bun-plugin-isolated-decl typescript oxc-transform

Usage

import isolatedDecl from 'bun-plugin-isolated-decl';
await Bun.build({
	entrypoints: ['./index.ts'],
	outdir: './dist',
	plugins: [isolatedDecl()],
	// ... other configuration options
});

You can also check the example script: tests.

Options

You can pass options to the plugin:

isolatedDecl({
	forceGenerate: true // Generate declaration files even if there are errors
});

| Option | Type | Default | Description | | --------------- | ------- | ------- | ----------------------------------------------------------------------------- | | forceGenerate | boolean | false | If true, generates declaration files even when there are errors in the source |

How it works

  1. The plugin processes all entrypoints specified in your Bun build configuration.
  2. For each entrypoint, it uses the oxc-transformer to generate isolated declaration files.
  3. If errors are encountered and forceGenerate is false, it will log the errors and skip generation for that file.
  4. Generated declaration files are written to the specified outdir with a .d.ts extension.

Comparison with bun-plugin-dts

While both plugins aim to generate declaration files, they have some key differences:

  1. Speed: bun-plugin-isolated-decl is significantly faster than bun-plugin-dts due to its use of oxc-transformer instead of tsc.

  2. Compatibility:

    • bun-plugin-dts uses tsc and can generate types for all TypeScript code.
    • bun-plugin-isolated-decl is optimized for and limited to source code that is compatible with TypeScript 5.5's isolatedDeclarations option.
  3. Use Case:

    • Choose bun-plugin-dts if you need comprehensive type generation for all TypeScript features.
    • Choose bun-plugin-isolated-decl if you prioritize speed and your codebase is compatible with isolated declarations.

Limitations and Advantages

  • Limitation: This plugin can only handle source code that is compatible with TypeScript 5.5's isolatedDeclarations option. It may not work for all TypeScript projects, especially those using advanced type features.

  • Advantage: For compatible codebases, this plugin offers extremely fast declaration file generation, significantly outperforming traditional tsc-based solutions.

Relationship to unplugin-isolated-decl

bun-plugin-isolated-decl is the Bun-specific implementation of unplugin-isolated-decl .

License

ISC License

Author

ryoppippi

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Issues

If you find a bug or have a suggestion, please file an issue on the GitHub repository.