oxc_transform_napi/lib.rs
1#[cfg(all(
2 feature = "allocator",
3 not(any(target_arch = "arm", target_os = "freebsd", target_family = "wasm"))
4))]
5#[global_allocator]
6static ALLOC: mimalloc_safe::MiMalloc = mimalloc_safe::MiMalloc;
7
8mod isolated_declaration;
9pub use isolated_declaration::*;
10
11mod transformer;
12pub use transformer::*;