summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 1749a38cf..c94aed244 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -383,7 +383,6 @@ async fn eval_command(
let source_file = SourceFile {
filename: main_module_url.to_file_path().unwrap(),
url: main_module_url,
- types_url: None,
types_header: None,
media_type: if as_typescript {
MediaType::TypeScript
@@ -588,7 +587,6 @@ async fn run_command(flags: Flags, script: String) -> Result<(), ErrBox> {
let source_file = SourceFile {
filename: main_module_url.to_file_path().unwrap(),
url: main_module_url,
- types_url: None,
types_header: None,
media_type: MediaType::TypeScript,
source_code: source,
@@ -646,7 +644,6 @@ async fn test_command(
let source_file = SourceFile {
filename: test_file_url.to_file_path().unwrap(),
url: test_file_url,
- types_url: None,
types_header: None,
media_type: MediaType::TypeScript,
source_code: test_file.clone().into_bytes(),