bun-plugin-dts-auto
bun-plugin-dts-auto copied to clipboard
Automatically generate your TypeScript .d.ts files, using Bun's bundler. Very fast.
bun-plugin-dts-auto
This Bun plugin generates dts files for your TypeScript projects.
Features
- Automatic & fast dts generation
- Powered by oxc-transform & isolatedDeclarations
- Monorepo support
Usage
bun install -d bun-plugin-dts-auto
You may now use the plugin:
import dts from 'bun-plugin-dts-auto'
// if you prefer named imports
// import { dts } from 'bun-plugin-dts-auto'
await Bun.build({
root: './src',
entrypoints: [
'src/index.ts',
],
outdir: './dist',
plugins: [
dts({
cwd: process.cwd(), // optional
root: './src', // optional, default: 'src'
outdir: './dist/types', // optional, default: './dist'
files: ['src/index.ts'], // optional, if not specified, all .ts files in root will be processed
}),
],
})
console.log('Build complete ✅')
API
The dts plugin accepts an options object with the following properties:
cwd: The current working directory (optional, default:process.cwd())root: The root directory of your TypeScript files (optional, default:'src')outdir: The output directory for generated declaration files (optional, default:'./dist')files: An array of file paths or a single file path to process (optional, if not specified, all.tsfiles in the root directory will be processed)
Testing
bun test
Changelog
Please see our releases page for more information on what has changed recently.
Contributing
Please review the Contributing Guide for details.
Community
For help, discussion about best practices, or any other conversation that would benefit from being searchable:
For casual chit-chat with others using this package:
Join the Stacks Discord Server
Postcardware
You will always be free to use any of the Stacks OSS software. We would also love to see which parts of the world Stacks ends up in. Receiving postcards makes us happy—and we will publish them on our website.
Our address: Stacks.js, 12665 Village Ln #2306, Playa Vista, CA 90094, United States 🌎
Sponsors
We would like to extend our thanks to the following sponsors for funding Stacks development. If you are interested in becoming a sponsor, please reach out to us.
Credits
Many thanks to the following core technologies & people who have contributed to this package:
- Oxc
- Chris Breuer
- All Contributors
License
The MIT License (MIT). Please see LICENSE for more information.
Made with 💙