1 2 3 4 5 6 7 8 9
//! Upstream source: `../nest-cli/lib/compiler/helpers/append-extension.ts`. pub fn append_ts_extension(path: &str) -> String { if path.ends_with(".ts") { path.to_string() } else { format!("{path}.ts") } }