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