diff options
author | Michael C <[email protected]> | 2022-10-20 22:13:51 -0400 |
---|---|---|
committer | Michael C <[email protected]> | 2022-10-20 22:13:51 -0400 |
commit | 1fcfea9fd533bbc7d91811c417d9646666f07dd6 (patch) | |
tree | 167ddf1d5a25724b072987af8823cdb2c7a7fd3d /tsconfig.json | |
parent | aec5845bced2443dea0bf36affd1aa64df18f36e (diff) | |
download | SponsorBlock-1fcfea9fd533bbc7d91811c417d9646666f07dd6.tar.gz SponsorBlock-1fcfea9fd533bbc7d91811c417d9646666f07dd6.zip |
add noFallThrough, inplicitReturn, update packages
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json index a2c61955..7f2ac9cf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "module": "commonjs", "target": "es6", "noImplicitAny": false, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, "sourceMap": true, "outDir": "dist/js", "noEmitOnError": false, |