From 18a63dd977ade20e17d41c08acbefde6eada8572 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 30 Nov 2021 09:23:30 +1100 Subject: feat: add `--no-check=remote` flag (#12766) Closes #11970 --- cli/ops/runtime_compiler.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cli/ops') diff --git a/cli/ops/runtime_compiler.rs b/cli/ops/runtime_compiler.rs index 0c3b48cd9..d79a5fe31 100644 --- a/cli/ops/runtime_compiler.rs +++ b/cli/ops/runtime_compiler.rs @@ -5,6 +5,7 @@ use crate::config_file::IgnoredCompilerOptions; use crate::diagnostics::Diagnostics; use crate::emit; use crate::errors::get_error_class_name; +use crate::flags; use crate::proc_state::ProcState; use crate::resolver::ImportMapResolver; use crate::resolver::JsxResolver; @@ -248,6 +249,7 @@ async fn op_emit( graph.clone(), cache.as_mut_cacher(), emit::CheckOptions { + check: flags::CheckFlag::All, debug, emit_with_diagnostics: true, maybe_config_specifier: None, @@ -268,6 +270,7 @@ async fn op_emit( graph.clone(), cache.as_mut_cacher(), emit::CheckOptions { + check: flags::CheckFlag::All, debug, emit_with_diagnostics: true, maybe_config_specifier: None, -- cgit v1.2.3