diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-05-10 18:16:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 18:16:39 +0200 |
commit | ce48b32979b007c35130321ed0f91d8ffdb6d593 (patch) | |
tree | 6cab6a1349fb9541eac0324efbfc563625d5e656 /cli/lsp/config.rs | |
parent | 7fc211e62752dddd4f70f8feef24dbcea795c1eb (diff) |
refactor(cli): replace loading file for --config flag with generic structure (#10481)
Currently file passed to --config file is parsed using TsConfig structure
that does multiple things when loading the file. Instead of relying on that
structure I've introduced ConfigFile structure that can be updated to
sniff out more fields from the config file in the future.
Diffstat (limited to 'cli/lsp/config.rs')
-rw-r--r-- | cli/lsp/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/config.rs b/cli/lsp/config.rs index 7aca52a9b..8cf4a67ef 100644 --- a/cli/lsp/config.rs +++ b/cli/lsp/config.rs @@ -102,7 +102,7 @@ pub struct WorkspaceSettings { /// A flag that indicates if Deno is enabled for the workspace. pub enable: bool, - /// An option that points to a path string of the tsconfig file to apply to + /// An option that points to a path string of the config file to apply to /// code within the workspace. pub config: Option<String>, |