mirror of
https://github.com/danbulant/oxc
synced 2026-05-23 06:08:47 +00:00
17 lines
463 B
Rust
17 lines
463 B
Rust
// NOTE: the strange order of struct and `mod` statements is to establish the
|
|
// desired order in generated `index.d.ts` code. We want options to be on top.
|
|
// This is not only for aesthetics, but using declarations before they're parsed
|
|
// breaks NAPI typegen.
|
|
mod context;
|
|
mod options;
|
|
|
|
pub use crate::options::*;
|
|
|
|
mod sourcemap;
|
|
pub use crate::sourcemap::*;
|
|
|
|
mod isolated_declaration;
|
|
pub use isolated_declaration::*;
|
|
|
|
mod transformer;
|
|
pub use transformer::*;
|