diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/cli/main.rs b/cli/main.rs index 932e465c0..7f6a80f30 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -25,7 +25,6 @@ mod http_cache; mod http_util; mod import_map; mod info; -mod js; mod lockfile; mod lsp; mod media_type; @@ -277,15 +276,15 @@ fn print_cache_info( fn get_types(unstable: bool) -> String { let mut types = format!( "{}\n{}\n{}\n{}\n{}", - crate::js::DENO_NS_LIB, - crate::js::DENO_WEB_LIB, - crate::js::DENO_FETCH_LIB, - crate::js::SHARED_GLOBALS_LIB, - crate::js::WINDOW_LIB, + crate::tsc::DENO_NS_LIB, + crate::tsc::DENO_WEB_LIB, + crate::tsc::DENO_FETCH_LIB, + crate::tsc::SHARED_GLOBALS_LIB, + crate::tsc::WINDOW_LIB, ); if unstable { - types.push_str(&format!("\n{}", crate::js::UNSTABLE_NS_LIB,)); + types.push_str(&format!("\n{}", crate::tsc::UNSTABLE_NS_LIB,)); } types |