diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index beb54cd23..b68539ad8 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -566,6 +566,7 @@ async fn eval_command( }, source: String::from_utf8(source_code)?, specifier: main_module.clone(), + maybe_headers: None, }; // Save our fake file into file fetcher cache @@ -815,6 +816,7 @@ async fn run_from_stdin(flags: Flags) -> Result<(), AnyError> { media_type: MediaType::TypeScript, source: String::from_utf8(source)?, specifier: main_module.clone(), + maybe_headers: None, }; // Save our fake file into file fetcher cache // to allow module access by TS compiler |