diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-11-04 18:13:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-04 18:13:28 -0500 |
commit | c04ff22afe45cc7bb0cd51d1fb74f440570bad8f (patch) | |
tree | 4508472d31a0f3939f2fa37c5aa4725598f8f2fe /cli/flags.rs | |
parent | 0644f9c1a6fd85831dac459f50306781ac2b08e3 (diff) |
Remove tsconfig files - they are not part of build process (#3262)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 6 |
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), ) |