summaryrefslogtreecommitdiff
path: root/cli/flags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/flags.rs')
-rw-r--r--cli/flags.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/flags.rs b/cli/flags.rs
index c6bb0a20f..b9350a22c 100644
--- a/cli/flags.rs
+++ b/cli/flags.rs
@@ -38,11 +38,7 @@ pub struct DenoFlags {
pub log_level: Option<Level>,
pub version: bool,
pub reload: bool,
- /// When the `--config`/`-c` flag is used to pass the name, this will be set
- /// the path passed on the command line, otherwise `None`.
pub config_path: Option<String>,
- /// When the `--importmap` flag is used to pass the name, this will be set
- /// the path passed on the command line, otherwise `None`.
pub import_map_path: Option<String>,
pub allow_read: bool,
pub read_whitelist: Vec<String>,
@@ -192,7 +188,7 @@ To get help on the another subcommands (run in this case):
.short("c")
.long("config")
.value_name("FILE")
- .help("Load compiler configuration file")
+ .help("Load tsconfig.json configuration file")
.takes_value(true)
.global(true),
)