From 48ea4e3c92b53936e89101a56a013300a47337d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 18 Sep 2024 14:49:30 +0100 Subject: feat(check): turn on noImplicitOverride (#25695) Closes https://github.com/denoland/deno/issues/11836 Ref https://github.com/denoland/deno/issues/25162 --- cli/lsp/config.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/lsp') 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", -- cgit v1.2.3