Enable two more strict options in tsconfig (#33438)

These have no violations so are safe to enable

- https://www.typescriptlang.org/tsconfig/#strictBindCallApply
- https://www.typescriptlang.org/tsconfig/#strictBuiltinIteratorReturn
pull/33211/head^2
silverwind 1 day ago committed by GitHub
parent 75940a0191
commit 48183d2b05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tsconfig.json

@ -22,6 +22,8 @@
"verbatimModuleSyntax": true,
"stripInternal": true,
"strict": false,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitThis": true,

Loading…
Cancel
Save