@@ -234,7 +234,7 @@ default: false
234234[ 94 m -- noImplicitAny [ 39 m
235235Enable error reporting for expressions and declarations with an implied 'any' type .
236236type : boolean
237- default : `true` , unless `strict` is disabled
237+ default : `true` , unless `strict` is `false`
238238
239239[ 94 m -- noImplicitOverride [ 39 m
240240Ensure overriding members in derived classes are marked with an override modifier .
@@ -249,7 +249,7 @@ default: false
249249[ 94 m -- noImplicitThis [ 39 m
250250Enable error reporting when 'this' is given the type 'any' .
251251type : boolean
252- default : `true` , unless `strict` is disabled
252+ default : `true` , unless `strict` is `false`
253253
254254[ 94 m -- noPropertyAccessFromIndexSignature [ 39 m
255255Enforces using indexed accessors for keys declared using an indexed type .
@@ -279,32 +279,32 @@ default: true
279279[ 94 m -- strictBindCallApply [ 39 m
280280Check that the arguments for 'bind' , 'call' , and 'apply' methods match the original function .
281281type : boolean
282- default : `true` , unless `strict` is disabled
282+ default : `true` , unless `strict` is `false`
283283
284284[ 94 m -- strictBuiltinIteratorReturn [ 39 m
285285Built - in iterators are instantiated with a 'TReturn' type of 'undefined' instead of 'any' .
286286type : boolean
287- default : `true` , unless `strict` is disabled
287+ default : `true` , unless `strict` is `false`
288288
289289[ 94 m -- strictFunctionTypes [ 39 m
290290When assigning functions , check to ensure parameters and the return values are subtype - compatible .
291291type : boolean
292- default : `true` , unless `strict` is disabled
292+ default : `true` , unless `strict` is `false`
293293
294294[ 94 m -- strictNullChecks [ 39 m
295295When type checking , take into account 'null' and 'undefined' .
296296type : boolean
297- default : `true` , unless `strict` is disabled
297+ default : `true` , unless `strict` is `false`
298298
299299[ 94 m -- strictPropertyInitialization [ 39 m
300300Check for class properties that are declared but not set in the constructor .
301301type : boolean
302- default : `true` , unless `strict` is disabled
302+ default : `true` , unless `strict` is `false`
303303
304304[ 94 m -- useUnknownInCatchVariables [ 39 m
305305Default catch clause variables as 'unknown' instead of 'any' .
306306type : boolean
307- default : `true` , unless `strict` is disabled
307+ default : `true` , unless `strict` is `false`
308308
309309### Watch and Build Modes
310310
0 commit comments