tsdown

Skill

Bundle TypeScript and JavaScript libraries with blazing-fast speed powered by Rolldown. Use when building libraries, generating type declarations, bundling for multiple formats, or migrating from tsup.

Files42
  • @skills/tsdown/LICENSE.md
  • @skills/tsdown/README.md
  • @skills/tsdown/SKILL.md
  • @skills/tsdown/SYNC.md
  • @skills/tsdown/references/README.md
  • @skills/tsdown/references/advanced-benchmark.md
  • @skills/tsdown/references/advanced-ci.md
  • @skills/tsdown/references/advanced-hooks.md
  • @skills/tsdown/references/advanced-plugins.md
  • @skills/tsdown/references/advanced-programmatic.md
  • @skills/tsdown/references/advanced-rolldown-options.md
  • @skills/tsdown/references/guide-getting-started.md
  • @skills/tsdown/references/guide-introduction.md
  • @skills/tsdown/references/guide-migrate-from-tsup.md
  • @skills/tsdown/references/option-cjs-default.md
  • @skills/tsdown/references/option-cleaning.md
  • @skills/tsdown/references/option-config-file.md
  • @skills/tsdown/references/option-css.md
  • @skills/tsdown/references/option-dependencies.md
  • @skills/tsdown/references/option-dts.md
  • @skills/tsdown/references/option-entry.md
  • @skills/tsdown/references/option-exe.md
  • @skills/tsdown/references/option-lint.md
  • @skills/tsdown/references/option-log-level.md
  • @skills/tsdown/references/option-minification.md
  • @skills/tsdown/references/option-output-directory.md
  • @skills/tsdown/references/option-output-format.md
  • @skills/tsdown/references/option-package-exports.md
  • @skills/tsdown/references/option-platform.md
  • @skills/tsdown/references/option-root.md
  • @skills/tsdown/references/option-shims.md
  • @skills/tsdown/references/option-sourcemap.md
  • @skills/tsdown/references/option-target.md
  • @skills/tsdown/references/option-tree-shaking.md
  • @skills/tsdown/references/option-unbundle.md
  • @skills/tsdown/references/option-watch-mode.md
  • @skills/tsdown/references/recipe-react.md
  • @skills/tsdown/references/recipe-solid.md
  • @skills/tsdown/references/recipe-svelte.md
  • @skills/tsdown/references/recipe-vue.md
  • @skills/tsdown/references/recipe-wasm.md
  • @skills/tsdown/references/reference-cli.md

tsdown - The Elegant Library Bundler

Blazing-fast bundler for TypeScript/JavaScript libraries powered by Rolldown and Oxc.

Runtime Requirement

tsdown requires Node.js 22.18.0 or higher to run (build-time only). However, the bundled output can target much lower Node.js versions via the target [blocked] option, so libraries built with tsdown are not locked to Node.js 22+ at runtime.
If your package needs to support Node.js 18 / 20:
  • Build with Node.js 22+ in CI (e.g. set target: 'node18' or target: 'node20').
  • Test the built output (or the packed tarball) on the lower Node.js versions you intend to support — e.g. using a matrix job that runs the published package's tests on Node.js 18 / 20 / 22.

When to Use

  • Building TypeScript/JavaScript libraries for npm
  • Generating TypeScript declaration files (.d.ts)
  • Bundling for multiple formats (ESM, CJS, IIFE, UMD)
  • Optimizing bundles with tree shaking and minification
  • Migrating from tsup with minimal changes
  • Building React, Vue, Solid, or Svelte component libraries

Quick Start

bash
# Install
pnpm add -D tsdown

# Basic usage
npx tsdown

# With config file
npx tsdown --config tsdown.config.ts

# Watch mode
npx tsdown --watch

# Migrate from tsup
npx tsdown-migrate

Basic Configuration

typescript
import { defineConfig } from 'tsdown'

export default defineConfig({
  entry: ['./src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
  clean: true,
})

Core References

TopicDescriptionReference
Getting StartedInstallation, first bundle, CLI basicsguide-getting-started [blocked]
Configuration FileConfig file formats, multiple configs, workspaceoption-config-file [blocked]
CLI ReferenceAll CLI commands and optionsreference-cli [blocked]
Migrate from tsupMigration guide and compatibility notesguide-migrate-from-tsup [blocked]
PluginsRolldown, Rollup, Unplugin supportadvanced-plugins [blocked]
For comprehensive migration assistance with complete option mappings, install the dedicated tsdown-migrate skill: npx skills add rolldown/tsdown --skill tsdown-migrate | Hooks | Lifecycle hooks for custom logic | advanced-hooks [blocked] | | Programmatic API | Build from Node.js scripts | advanced-programmatic [blocked] | | Rolldown Options | Pass options directly to Rolldown | advanced-rolldown-options [blocked] | | CI Environment | CI detection, 'ci-only' / 'local-only' values | advanced-ci [blocked] |

Build Options

OptionUsageReference
Entry pointsentry: ['src/*.ts', '!**/*.test.ts']option-entry [blocked]
Output formatsformat: ['esm', 'cjs', 'iife', 'umd']option-output-format [blocked]
Output directoryoutDir: 'dist', outExtensionsoption-output-directory [blocked]
Type declarationsdts: true, dts: { sourcemap, compilerOptions, vue }option-dts [blocked]
Target environmenttarget: 'es2020', target: 'esnext'option-target [blocked]
Platformplatform: 'node', platform: 'browser'option-platform [blocked]
Tree shakingtreeshake: true, custom optionsoption-tree-shaking [blocked]
Minificationminify: true, minify: 'dce-only'option-minification [blocked]
Source mapssourcemap: true, 'inline', 'hidden'option-sourcemap [blocked]
Watch modewatch: true, watch optionsoption-watch-mode [blocked]
Cleaningclean: true, clean patternsoption-cleaning [blocked]
Log levellogLevel: 'silent', failOnWarn: falseoption-log-level [blocked]

Dependency Handling

FeatureUsageReference
Never bundledeps: { neverBundle: ['react', /^@myorg\//] }option-dependencies [blocked]
Always bundledeps: { alwaysBundle: ['dep-to-bundle'] }option-dependencies [blocked]
Only bundledeps: { onlyBundle: ['cac', 'bumpp'] } - Whitelistoption-dependencies [blocked]
Skip node_modulesdeps: { skipNodeModulesBundle: true }option-dependencies [blocked]
Auto externalAutomatic dependency/peer/optional externalizationoption-dependencies [blocked]

Output Enhancement

FeatureUsageReference
Shimsshims: true - Add ESM/CJS compatibilityoption-shims [blocked]
CJS defaultcjsDefault: true (default) / falseoption-cjs-default [blocked]
Package exportsexports: true - Generate exports fieldoption-package-exports [blocked]
CSS handling[experimental] css: { ... } — full pipeline with preprocessors, Lightning CSS, PostCSS, CSS modules, code splitting; requires @tsdown/cssoption-css [blocked]
CSS modulescss: { modules: { localsConvention: 'camelCase' } } — scoped class names for .module.css filesoption-css [blocked]
CSS injectcss: { inject: true } — preserve CSS imports in JS outputoption-css [blocked]
Unbundle modeunbundle: true - Preserve directory structureoption-unbundle [blocked]
Root directoryroot: 'src' - Control output directory mappingoption-root [blocked]
Executable[experimental] exe: true - Bundle as standalone executable, cross-platform via @tsdown/exeoption-exe [blocked]
Package validationpublint: true, attw: true - Validate packageoption-lint [blocked]

Framework & Runtime Support

FrameworkGuideReference
ReactJSX transform, React Compilerrecipe-react [blocked]
VueSFC support, JSXrecipe-vue [blocked]
SolidSolidJS JSX transformrecipe-solid [blocked]
SvelteSvelte component libraries (source distribution recommended)recipe-svelte [blocked]
WASMWebAssembly modules via rolldown-plugin-wasmrecipe-wasm [blocked]

Common Patterns

Basic Library Bundle

typescript
export default defineConfig({
  entry: ['src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
  clean: true,
})

Multiple Entry Points

typescript
export default defineConfig({
  entry: {
    index: 'src/index.ts',
    utils: 'src/utils.ts',
    cli: 'src/cli.ts',
  },
  format: ['esm', 'cjs'],
  dts: true,
})

Browser Library (IIFE/UMD)

typescript
export default defineConfig({
  entry: ['src/index.ts'],
  format: ['iife'],
  globalName: 'MyLib',
  platform: 'browser',
  minify: true,
})

React Component Library

typescript
export default defineConfig({
  entry: ['src/index.tsx'],
  format: ['esm', 'cjs'],
  dts: true,
  deps: {
    neverBundle: ['react', 'react-dom'],
  },
  inputOptions: {
    jsx: { runtime: 'automatic' },
  },
})

Preserve Directory Structure

typescript
export default defineConfig({
  entry: ['src/**/*.ts', '!**/*.test.ts'],
  unbundle: true, // Preserve file structure
  format: ['esm'],
  dts: true,
})

CI-Aware Configuration

typescript
export default defineConfig({
  entry: ['src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
  failOnWarn: 'ci-only',  // opt-in: fail on warnings in CI
  publint: 'ci-only',
  attw: 'ci-only',
})

WASM Support

typescript
import { wasm } from 'rolldown-plugin-wasm'
import { defineConfig } from 'tsdown'

export default defineConfig({
  entry: ['src/index.ts'],
  plugins: [wasm()],
})

Library with CSS and Sass

typescript
export default defineConfig({
  entry: ['src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
  target: 'chrome100',
  css: {
    preprocessorOptions: {
      scss: {
        additionalData: `@use "src/styles/variables" as *;`,
      },
    },
  },
})

Standalone Executable

typescript
export default defineConfig({
  entry: ['src/cli.ts'],
  exe: true,
})

Cross-Platform Executable (requires @tsdown/exe)

typescript
export default defineConfig({
  entry: ['src/cli.ts'],
  exe: {
    targets: [
      { platform: 'linux', arch: 'x64', nodeVersion: '25.7.0' },
      { platform: 'darwin', arch: 'arm64', nodeVersion: '25.7.0' },
      { platform: 'win', arch: 'x64', nodeVersion: '25.7.0' },
    ],
  },
})

Advanced with Hooks

typescript
export default defineConfig({
  entry: ['src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
  hooks: {
    'build:before': async (context) => {
      console.log('Building...')
    },
    'build:done': async (context) => {
      console.log('Build complete!')
    },
  },
})

Configuration Features

Multiple Configs

Export an array for multiple build configurations:
typescript
export default defineConfig([
  {
    entry: ['src/index.ts'],
    format: ['esm', 'cjs'],
    dts: true,
  },
  {
    entry: ['src/cli.ts'],
    format: ['esm'],
    platform: 'node',
  },
])

Conditional Config

Use functions for dynamic configuration:
typescript
export default defineConfig((options) => {
  const isDev = options.watch
  return {
    entry: ['src/index.ts'],
    format: ['esm', 'cjs'],
    minify: !isDev,
    sourcemap: isDev,
  }
})

Workspace/Monorepo

Use glob patterns to build multiple packages:
typescript
export default defineConfig({
  workspace: 'packages/*',
  entry: ['src/index.ts'],
  format: ['esm', 'cjs'],
  dts: true,
})

CLI Quick Reference

bash
# Basic commands
tsdown                          # Build once
tsdown --watch                  # Watch mode
tsdown --config custom.ts       # Custom config
npx tsdown-migrate              # Migrate from tsup

# Output options
tsdown --format esm,cjs        # Multiple formats
tsdown -d lib                  # Custom output directory (--out-dir)
tsdown --minify                # Enable minification
tsdown --dts                   # Generate declarations
tsdown --exe                   # Bundle as standalone executable
tsdown --unbundle              # Bundleless mode

# Entry options
tsdown src/index.ts            # Single entry
tsdown src/*.ts                # Glob patterns
tsdown src/a.ts src/b.ts       # Multiple entries

# Workspace / Monorepo
tsdown -W                      # Enable workspace mode
tsdown -W -F my-package        # Filter specific package
tsdown --filter /^pkg-/        # Filter by regex

# Development
tsdown --watch                 # Watch mode
tsdown --sourcemap             # Generate source maps
tsdown --clean                 # Clean output directory
tsdown --from-vite             # Reuse Vite config
tsdown --tsconfig tsconfig.build.json  # Custom tsconfig

Best Practices

  1. Always generate type declarations for TypeScript libraries:
    typescript
    { dts: true }
  2. Externalize dependencies to avoid bundling unnecessary code:
    typescript
    { deps: { neverBundle: [/^react/, /^@myorg\//] } }
  3. Use tree shaking for optimal bundle size:
    typescript
    { treeshake: true }
  4. Enable minification for production builds:
    typescript
    { minify: true }
  5. Add shims for better ESM/CJS compatibility:
    typescript
    { shims: true }  // Adds __dirname, __filename, etc.
  6. Auto-generate package.json exports:
    typescript
    { exports: true }  // Creates proper exports field
  7. Use watch mode during development:
    bash
    tsdown --watch
  8. Preserve structure for utilities with many files:
    typescript
    { unbundle: true }  // Keep directory structure
  9. Validate packages in CI before publishing:
    typescript
    { publint: 'ci-only', attw: 'ci-only' }

Resources

tsdown — Kortix Marketplace | Kortix