mod astro;
mod css;
mod js_ts;
mod mdx;
mod sfc;
use std::path::Path;
use fallow_types::discover::FileId;
use fallow_types::extract::ModuleInfo;
use crate::parse::parse_source_to_module;
pub fn parse_ts(source: &str) -> ModuleInfo {
parse_source_to_module(FileId(0), Path::new("test.ts"), source, 0)
}