Library/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;
7
8pub mod Codegen;
9
10pub mod Compile;
11
12pub mod Parser;
13
14pub mod Transformer;
15
16pub mod Watch;