Rest/Fn/OXC/mod.rs
1//! OXC-based TypeScript compiler module
2//!
3//! This module provides TypeScript to JavaScript compilation using the OXC
4//! parser and transformer, replacing the previous SWC-based implementation.
5
6pub mod Compiler;
7pub mod Codegen;
8pub mod Compile;
9pub mod Parser;
10pub mod Transformer;
11pub mod Watch;