diff options
Diffstat (limited to 'cli/module_loader.rs')
-rw-r--r-- | cli/module_loader.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/module_loader.rs b/cli/module_loader.rs index 67811304b..4a1e0b671 100644 --- a/cli/module_loader.rs +++ b/cli/module_loader.rs @@ -330,7 +330,10 @@ impl CliModuleLoaderFactory { lib_window: options.ts_type_lib_window(), lib_worker: options.ts_type_lib_worker(), is_inspecting: options.is_inspecting(), - is_repl: matches!(options.sub_command(), DenoSubcommand::Repl(_)), + is_repl: matches!( + options.sub_command(), + DenoSubcommand::Repl(_) | DenoSubcommand::Jupyter(_) + ), prepared_module_loader: PreparedModuleLoader { emitter, graph_container: graph_container.clone(), |