swc_estree_compat/
lib.rs

1
2
3
4
5
6
7
8
9
10
#![deny(clippy::all)]
#![allow(clippy::large_enum_variant)]
#![allow(clippy::upper_case_acronyms)]

use std::convert::Infallible;

pub mod babelify;
pub mod swcify;

pub type Never = Infallible;