diff options
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index 05606cb79..9899fad72 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -44,12 +44,15 @@ use log::warn; use lspower::lsp; use regex::Captures; use regex::Regex; +use std::borrow::Cow; +use std::cmp; +use std::collections::HashMap; use std::collections::HashSet; +use std::path::Path; use std::sync::Arc; use std::thread; -use std::{borrow::Cow, cmp}; -use std::{collections::HashMap, path::Path}; -use text_size::{TextRange, TextSize}; +use text_size::TextRange; +use text_size::TextSize; use tokio::sync::mpsc; use tokio::sync::oneshot; @@ -3375,7 +3378,7 @@ mod tests { #[test] fn test_modify_sources() { let (mut runtime, state_snapshot, location) = setup( - true, + false, json!({ "target": "esnext", "module": "esnext", |