rsvim_core 0.1.3-alpha.2

The core library for RSVIM text editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Js module transpiler.

// pub mod jsx;
// pub mod tsx;
#[cfg(feature = "typescript")]
pub mod typescript;
#[cfg(feature = "wasm")]
pub mod wasm;

#[cfg(all(test, feature = "typescript"))]
mod typescript_tests;

#[cfg(feature = "typescript")]
pub use typescript::TypeScript;
#[cfg(feature = "wasm")]
pub use wasm::Wasm;