diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-18 14:49:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 14:49:30 +0100 |
commit | 48ea4e3c92b53936e89101a56a013300a47337d3 (patch) | |
tree | 90ca1009d8eb29796fab0654028043b5db0628fe /cli/lsp | |
parent | 7533492a7817ba61b3606dd412b78dc4d98faa76 (diff) |
feat(check): turn on noImplicitOverride (#25695)
Closes https://github.com/denoland/deno/issues/11836
Ref https://github.com/denoland/deno/issues/25162
Diffstat (limited to 'cli/lsp')
-rw-r--r-- | cli/lsp/config.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lsp/config.rs b/cli/lsp/config.rs index f69cae435..94fdff167 100644 --- a/cli/lsp/config.rs +++ b/cli/lsp/config.rs @@ -1129,6 +1129,7 @@ impl Default for LspTsConfig { "module": "esnext", "moduleDetection": "force", "noEmit": true, + "noImplicitOverride": true, "resolveJsonModule": true, "strict": true, "target": "esnext", |