File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ interface CompilerOptions {
4646 noFallthroughCasesInSwitch ?: boolean ;
4747 noImplicitAny ?: boolean ; // Error on inferred `any` type
4848 noImplicitReturns ?: boolean ;
49+ noImplicitUseStrict ?: boolean ;
4950 noLib ?: boolean ;
5051 noLibCheck ?: boolean ;
5152 noResolve ?: boolean ;
@@ -95,6 +96,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
9596 noErrorTruncation : { type : types . boolean } ,
9697 noFallthroughCasesInSwitch : { type : types . boolean } ,
9798 noImplicitAny : { type : types . boolean } ,
99+ noImplicitUseStrict : { type : types . boolean } ,
98100 noImplicitReturns : { type : types . boolean } ,
99101 noLib : { type : types . boolean } ,
100102 noLibCheck : { type : types . boolean } ,
@@ -240,6 +242,7 @@ export var defaults: ts.CompilerOptions = {
240242 emitDecoratorMetadata : true ,
241243 declaration : false ,
242244 noImplicitAny : false ,
245+ noImplicitUseStrict : false ,
243246 removeComments : true ,
244247 noLib : false ,
245248 preserveConstEnums : true ,
You can’t perform that action at this time.
0 commit comments