@@ -51,10 +51,12 @@ interface CompilerOptions {
51
51
noFallthroughCasesInSwitch ?: boolean ;
52
52
noImplicitAny ?: boolean ; // Error on inferred `any` type
53
53
noImplicitReturns ?: boolean ;
54
+ noImplicitThis ?: boolean ;
54
55
noImplicitUseStrict ?: boolean ;
55
56
noLib ?: boolean ;
56
57
noLibCheck ?: boolean ;
57
58
noResolve ?: boolean ;
59
+ noUnusedLocals ?: boolean ;
58
60
out ?: string ; // Deprecated. Use outFile instead
59
61
outFile ?: string ; // new name for out
60
62
outDir ?: string ; // Redirect output structure to this directory
@@ -111,11 +113,13 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
111
113
noErrorTruncation : { type : types . boolean } ,
112
114
noFallthroughCasesInSwitch : { type : types . boolean } ,
113
115
noImplicitAny : { type : types . boolean } ,
116
+ noImplicitThis : { type : types . boolean } ,
114
117
noImplicitUseStrict : { type : types . boolean } ,
115
118
noImplicitReturns : { type : types . boolean } ,
116
119
noLib : { type : types . boolean } ,
117
120
noLibCheck : { type : types . boolean } ,
118
121
noResolve : { type : types . boolean } ,
122
+ noUnusedLocals : { type : types . boolean } ,
119
123
out : { type : types . string } ,
120
124
outFile : { type : types . string } ,
121
125
outDir : { type : types . string } ,
0 commit comments