From 281c4cd8fcf5fd54f558a6922736def2c7804529 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 22 Jun 2021 07:18:32 +1000 Subject: feat(cli): support "types" when type checking (#10999) Fixes #10677 --- 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 c2d5582e7..099f2d555 100644 --- a/cli/ops/runtime_compiler.rs +++ b/cli/ops/runtime_compiler.rs @@ -108,6 +108,9 @@ async fn op_emit( &root_specifier )) })?; + builder + .analyze_compiler_options(&args.compiler_options) + .await?; let bundle_type = match args.bundle { Some(RuntimeBundleType::Module) => BundleType::Module, Some(RuntimeBundleType::Classic) => BundleType::Classic, -- cgit v1.2.3