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/ops/runtime_compiler.rs | |
parent | d2c53e7f10086109dc49785a9dbc36023c28b577 (diff) |
fix(cli): don't cache .tsbuildinfo unless emitting (#12830)
Fixes #12755
Fixes #12807
Fixes #12832
Diffstat (limited to 'cli/ops/runtime_compiler.rs')
-rw-r--r-- | cli/ops/runtime_compiler.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/ops/runtime_compiler.rs b/cli/ops/runtime_compiler.rs index 145da4c1d..0c3b48cd9 100644 --- a/cli/ops/runtime_compiler.rs +++ b/cli/ops/runtime_compiler.rs @@ -252,6 +252,7 @@ async fn op_emit( emit_with_diagnostics: true, maybe_config_specifier: None, ts_config, + reload: true, }, )?; (emit_result.diagnostics, emit_result.stats) @@ -271,6 +272,7 @@ async fn op_emit( emit_with_diagnostics: true, maybe_config_specifier: None, ts_config: ts_config.clone(), + reload: true, }, )?; (emit_result.diagnostics, emit_result.stats) |