Chore: Fix more TypeScript strict errors (#37066)

* Chore: Fix more TypeScript strict errors

* whoops
This commit is contained in:
Ashley Harrison
2021-07-22 08:09:55 +01:00
committed by GitHub
parent 7815ed511f
commit 3004a650b5
23 changed files with 53 additions and 51 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ set -e
echo -e "Collecting code stats (typescript errors & more)"
ERROR_COUNT_LIMIT=198
ERROR_COUNT_LIMIT=157
ERROR_COUNT="$(./node_modules/.bin/tsc --project tsconfig.json --noEmit --strict true | grep -oP 'Found \K(\d+)')"
if [ "$ERROR_COUNT" -gt $ERROR_COUNT_LIMIT ]; then