swc_estree_compat/
lib.rs

1#![deny(clippy::all)]
2#![allow(clippy::large_enum_variant)]
3#![allow(clippy::upper_case_acronyms)]
4
5use std::convert::Infallible;
6
7pub mod babelify;
8pub mod swcify;
9
10pub type Never = Infallible;