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/tsc/99_main_compiler.js | |
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/tsc/99_main_compiler.js')
-rw-r--r-- | cli/tsc/99_main_compiler.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tsc/99_main_compiler.js b/cli/tsc/99_main_compiler.js index c5769168f..719f2b982 100644 --- a/cli/tsc/99_main_compiler.js +++ b/cli/tsc/99_main_compiler.js @@ -1154,6 +1154,7 @@ delete Object.prototype.__proto__; "moduleResolution": "NodeNext", "moduleDetection": "force", "noEmit": true, + "noImplicitOverride": true, "resolveJsonModule": true, "strict": true, "target": "esnext", |