diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-06-27 16:54:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 16:54:09 -0400 |
commit | e1c90963fbbf6571ae1b66971b83159681928ec3 (patch) | |
tree | 4bbf86a50776a512e966a9efba3cef044b00152d /cli/tsc.rs | |
parent | 681bb49d0df0865a6564741544869a57aab56bb1 (diff) |
refactor: create `args` folder (#14982)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index b293ea3b2..95fdd305a 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -1,6 +1,6 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -use crate::config_file::TsConfig; +use crate::args::TsConfig; use crate::diagnostics::Diagnostics; use crate::emit; use crate::graph_util::GraphData; @@ -699,7 +699,7 @@ pub fn exec(request: Request) -> Result<Response, AnyError> { #[cfg(test)] mod tests { use super::*; - use crate::config_file::TsConfig; + use crate::args::TsConfig; use crate::diagnostics::Diagnostic; use crate::diagnostics::DiagnosticCategory; use crate::emit::Stats; |