use std::sync::Arc;
use rspack_fs::IntermediateFileSystem;
use rspack_paths::Utf8PathBuf;
#[derive(Debug)]
pub struct FileSystemOptions {
pub directory: Utf8PathBuf,
pub version: String,
pub max_pack_size: usize,
pub expire: u64,
pub fs: Arc<dyn IntermediateFileSystem>,
}