#javascript-linter #parser #typescript #minify #javascript-parser

oxc_isolated_declarations

A collection of JavaScript tools written in Rust

142 releases (breaking)

Uses new Rust 2024

new 0.116.0 Mar 2, 2026
0.114.0 Feb 16, 2026
0.106.0 Dec 29, 2025
0.99.0 Nov 24, 2025
0.22.1 Jul 28, 2024

#1838 in Programming languages

Download history 9149/week @ 2025-11-10 8847/week @ 2025-11-17 5339/week @ 2025-11-24 6456/week @ 2025-12-01 6807/week @ 2025-12-08 8020/week @ 2025-12-15 3486/week @ 2025-12-22 3880/week @ 2025-12-29 6804/week @ 2026-01-05 9084/week @ 2026-01-12 7127/week @ 2026-01-19 8191/week @ 2026-01-26 8272/week @ 2026-02-02 10624/week @ 2026-02-09 7721/week @ 2026-02-16 7838/week @ 2026-02-23

35,119 downloads per month
Used in 81 crates (3 directly)

MIT license

3.5MB
71K SLoC

Oxc Isolated Declarations

TypeScript isolated declarations transformer for generating .d.ts files.

Overview

This crate implements TypeScript's isolated declarations feature, which generates TypeScript declaration files (.d.ts) from source code without requiring full type checking. This enables faster builds and better incremental compilation.

Key Features

  • Fast declaration generation: Generate .d.ts files without full type checking
  • TypeScript 5.5+ compatibility: Implements the latest isolated declarations specification
  • Incremental builds: Enables faster TypeScript compilation workflows
  • Comprehensive support: Handles classes, functions, interfaces, and complex types

Architecture

Isolated Declarations Concept

Isolated declarations allow generating TypeScript declaration files without full type inference by requiring that:

  • All exported functions have explicit return types
  • All exported variables have explicit types
  • Type information is locally available

Implementation Details

  • AST transformation: Convert implementation AST to declaration AST
  • Type extraction: Extract and preserve type information
  • Export analysis: Determine what needs to be included in declarations
  • Error reporting: Provide helpful diagnostics for missing type annotations

Benefits

  • Faster builds: No full type checking required
  • Incremental compilation: Each file can be processed independently
  • Parallel processing: Multiple files can be processed simultaneously
  • Simplified tooling: Easier to integrate into build systems

This implementation follows the TypeScript compiler's approach while leveraging oxc's performance-oriented architecture.

Dependencies

~6MB
~104K SLoC