File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ var compilerOptionsValidation = {
44
44
noLibCheck : { type : types . boolean } ,
45
45
noResolve : { type : types . boolean } ,
46
46
noUnusedLocals : { type : types . boolean } ,
47
+ noUnusedParameters : { type : types . boolean } ,
47
48
out : { type : types . string } ,
48
49
outFile : { type : types . string } ,
49
50
outDir : { type : types . string } ,
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ interface CompilerOptions {
57
57
noLibCheck ?: boolean ;
58
58
noResolve ?: boolean ;
59
59
noUnusedLocals ?: boolean ;
60
+ noUnusedParameters ?: boolean ;
60
61
out ?: string ; // Deprecated. Use outFile instead
61
62
outFile ?: string ; // new name for out
62
63
outDir ?: string ; // Redirect output structure to this directory
@@ -121,6 +122,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
121
122
noLibCheck : { type : types . boolean } ,
122
123
noResolve : { type : types . boolean } ,
123
124
noUnusedLocals : { type : types . boolean } ,
125
+ noUnusedParameters : { type : types . boolean } ,
124
126
out : { type : types . string } ,
125
127
outFile : { type : types . string } ,
126
128
outDir : { type : types . string } ,
You can’t perform that action at this time.
0 commit comments