diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2021-11-23 21:20:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 08:20:30 +1100 |
commit | 7413c96985507e7d129fef9374f560fbc2f38d7e (patch) | |
tree | d7f33a4deb180d7ff0f636ac4030249803ba7fce /cli/main.rs | |
parent | d2c53e7f10086109dc49785a9dbc36023c28b577 (diff) |
fix(cli): don't cache .tsbuildinfo unless emitting (#12830)
Fixes #12755
Fixes #12807
Fixes #12832
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 5afb34f02..6e8b50599 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -724,6 +724,7 @@ async fn create_graph_and_maybe_check( emit_with_diagnostics: false, maybe_config_specifier, ts_config, + reload: ps.flags.reload, }, )?; debug!("{}", check_result.stats); |