mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
docs: Update --config flag help text (#12059)
This commit is contained in:
parent
cba1e7b5a3
commit
94c5cd7b2c
1 changed files with 11 additions and 1 deletions
12
cli/flags.rs
12
cli/flags.rs
|
@ -1629,7 +1629,17 @@ fn config_arg<'a, 'b>() -> Arg<'a, 'b> {
|
||||||
.short("c")
|
.short("c")
|
||||||
.long("config")
|
.long("config")
|
||||||
.value_name("FILE")
|
.value_name("FILE")
|
||||||
.help("Load tsconfig.json configuration file")
|
.help("Load configuration file")
|
||||||
|
.long_help(
|
||||||
|
"Load configuration file.
|
||||||
|
Before 1.14 Deno only supported loading tsconfig.json that allowed
|
||||||
|
to customise TypeScript compiler settings.
|
||||||
|
|
||||||
|
Starting with 1.14 configuration file can be used to configure different
|
||||||
|
subcommands like `deno lint` or `deno fmt`.
|
||||||
|
|
||||||
|
It's recommended to use `deno.json` or `deno.jsonc` as a filename.",
|
||||||
|
)
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue