diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-11-24 15:14:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 15:14:19 -0500 |
| commit | adc5974333174bd59796f5b7bb8b010c17479dd0 (patch) | |
| tree | 969e9ec5e1bdd2f037ad87a283858306bf2a18d2 /cli/proc_state.rs | |
| parent | 88000b5feb531fc3969bfa8d60faec0f204cc659 (diff) | |
fix(lsp): lsp should respect include/exclude files in format config (#12876)
Diffstat (limited to 'cli/proc_state.rs')
| -rw-r--r-- | cli/proc_state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/proc_state.rs b/cli/proc_state.rs index 7615b9d46..97f24bc90 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -500,7 +500,7 @@ impl ProcState { let maybe_config_specifier = self .maybe_config_file .as_ref() - .map(|cf| ModuleSpecifier::from_file_path(&cf.path).unwrap()); + .map(|cf| cf.specifier.clone()); let options = emit::CheckOptions { debug: self.flags.log_level == Some(log::Level::Debug), emit_with_diagnostics: false, |
