Skip to content

Commit 48183d2

Browse files
authored
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
1 parent 75940a0 commit 48183d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
"verbatimModuleSyntax": true,
2323
"stripInternal": true,
2424
"strict": false,
25+
"strictBindCallApply": true,
26+
"strictBuiltinIteratorReturn": true,
2527
"strictFunctionTypes": true,
2628
"noImplicitAny": true,
2729
"noImplicitThis": true,

0 commit comments

Comments
 (0)