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 {
46
46
noFallthroughCasesInSwitch ?: boolean ;
47
47
noImplicitAny ?: boolean ; // Error on inferred `any` type
48
48
noImplicitReturns ?: boolean ;
49
+ noImplicitUseStrict ?: boolean ;
49
50
noLib ?: boolean ;
50
51
noLibCheck ?: boolean ;
51
52
noResolve ?: boolean ;
@@ -95,6 +96,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
95
96
noErrorTruncation : { type : types . boolean } ,
96
97
noFallthroughCasesInSwitch : { type : types . boolean } ,
97
98
noImplicitAny : { type : types . boolean } ,
99
+ noImplicitUseStrict : { type : types . boolean } ,
98
100
noImplicitReturns : { type : types . boolean } ,
99
101
noLib : { type : types . boolean } ,
100
102
noLibCheck : { type : types . boolean } ,
@@ -241,6 +243,7 @@ export var defaults: ts.CompilerOptions = {
241
243
emitDecoratorMetadata : true ,
242
244
declaration : false ,
243
245
noImplicitAny : false ,
246
+ noImplicitUseStrict : false ,
244
247
removeComments : true ,
245
248
noLib : false ,
246
249
preserveConstEnums : true ,
You can’t perform that action at this time.
0 commit comments