diff options
Diffstat (limited to 'cli/state.rs')
-rw-r--r-- | cli/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/state.rs b/cli/state.rs index 9fd719646..8c425d700 100644 --- a/cli/state.rs +++ b/cli/state.rs @@ -1,5 +1,4 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -use crate::compilers::TargetLib; use crate::file_fetcher::SourceFileFetcher; use crate::global_state::GlobalState; use crate::global_timer::GlobalTimer; @@ -9,6 +8,7 @@ use crate::op_error::OpError; use crate::ops::JsonOp; use crate::ops::MinimalOp; use crate::permissions::Permissions; +use crate::tsc::TargetLib; use crate::web_worker::WebWorkerHandle; use deno_core::Buf; use deno_core::ErrBox; |