use std::path::PathBuf;
use crate::configuration::CompilerOptions;
use super::super::CompilerCommandOptions;
pub fn get_tsc_config_path(
options: &CompilerCommandOptions,
compiler_options: &CompilerOptions,
) -> PathBuf {
super::super::get_tsc_config_path(options, compiler_options)
}