use std::{path::PathBuf, sync::Arc};
use arcstr::ArcStr;
use crate::{PreliminaryFilename, RollupRenderedChunk};
#[derive(Debug)]
pub struct EcmaAssetMeta {
pub rendered_chunk: Arc<RollupRenderedChunk>,
pub debug_id: u128,
pub imports: Vec<ArcStr>,
pub dynamic_imports: Vec<ArcStr>,
pub sourcemap_filename: Option<String>,
pub file_dir: PathBuf,
pub preliminary_filename: PreliminaryFilename,
}