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-production.json | |
parent | aec5845bced2443dea0bf36affd1aa64df18f36e (diff) | |
download | SponsorBlock-1fcfea9fd533bbc7d91811c417d9646666f07dd6.tar.gz SponsorBlock-1fcfea9fd533bbc7d91811c417d9646666f07dd6.zip |
add noFallThrough, inplicitReturn, update packages
Diffstat (limited to 'tsconfig-production.json')
-rw-r--r-- | tsconfig-production.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tsconfig-production.json b/tsconfig-production.json index a2cc4b4b..98b7cbe2 100644 --- a/tsconfig-production.json +++ b/tsconfig-production.json @@ -3,6 +3,8 @@ "module": "commonjs", "target": "es6", "noImplicitAny": false, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, "sourceMap": false, "outDir": "dist/js", "noEmitOnError": false, |