diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-10-26 10:34:16 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 10:34:16 +1100 |
commit | 56d9a020d94f022e0c9081d661c73f278d92084a (patch) | |
tree | c95d98e22f9bef671b0e6be956611c5868e24faa /cli/proc_state.rs | |
parent | 2ab3664e509a73b58ca65560cf18ce29b1173271 (diff) |
fix(cli): do not cache emit when diagnostics present (#12541)
Fixes #12471
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 b7956d085..ecfc94233 100644 --- a/cli/proc_state.rs +++ b/cli/proc_state.rs @@ -389,7 +389,7 @@ impl ProcState { .map(|cf| ModuleSpecifier::from_file_path(&cf.path).unwrap()); let options = emit::CheckOptions { debug: self.flags.log_level == Some(log::Level::Debug), - emit_with_diagnostics: true, + emit_with_diagnostics: false, maybe_config_specifier, ts_config, }; |