diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-09-06 19:23:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 12:23:59 +0200 |
commit | 8ef08f1d294dbe7e3771202084ecbede73ca28aa (patch) | |
tree | 8930e11abd8027129873acc0ca2c67fe0bfadb28 /cli/schemas | |
parent | 56363e4f4e097eadc85f5219e9e08c7ffc059e31 (diff) |
feat(lsp): turn on useUnknownInCatchVariables (#25474)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index df8177af2..d0dc27e75 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -223,7 +223,7 @@ "useUnknownInCatchVariables": { "description": "Default catch clause variables as `unknown` instead of `any`.", "type": "boolean", - "default": false, + "default": true, "markdownDescription": "Default catch clause variables as `unknown` instead of `any`.\n\nSee more: https://www.typescriptlang.org/tsconfig#useUnknownInCatchVariables" } } |