use oxc::span::Atom;
pub const CJS_EXPORTS_REF: &str = "exports";
pub const CJS_MODULE_REF: &str = "module";
pub const CJS_REQUIRE_REF: &str = "require";
pub const CJS_ROLLDOWN_EXPORTS_REF: &str = "__rolldown_exports__";
pub const CJS_ROLLDOWN_MODULE_REF: &str = "__rolldown_module__";
pub const CJS_EXPORTS_REF_ATOM: Atom<'static> = Atom::new_const(CJS_EXPORTS_REF);
pub const CJS_MODULE_REF_ATOM: Atom<'static> = Atom::new_const(CJS_MODULE_REF);
pub const CJS_REQUIRE_REF_ATOM: Atom<'static> = Atom::new_const(CJS_REQUIRE_REF);
pub const CJS_ROLLDOWN_EXPORTS_REF_ATOM: Atom<'static> = Atom::new_const(CJS_ROLLDOWN_EXPORTS_REF);
pub const CJS_ROLLDOWN_MODULE_REF_ATOM: Atom<'static> = Atom::new_const(CJS_ROLLDOWN_MODULE_REF);