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 = {
4444 noLibCheck : { type : types . boolean } ,
4545 noResolve : { type : types . boolean } ,
4646 noUnusedLocals : { type : types . boolean } ,
47+ noUnusedParameters : { type : types . boolean } ,
4748 out : { type : types . string } ,
4849 outFile : { type : types . string } ,
4950 outDir : { type : types . string } ,
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ interface CompilerOptions {
5757 noLibCheck ?: boolean ;
5858 noResolve ?: boolean ;
5959 noUnusedLocals ?: boolean ;
60+ noUnusedParameters ?: boolean ;
6061 out ?: string ; // Deprecated. Use outFile instead
6162 outFile ?: string ; // new name for out
6263 outDir ?: string ; // Redirect output structure to this directory
@@ -121,6 +122,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
121122 noLibCheck : { type : types . boolean } ,
122123 noResolve : { type : types . boolean } ,
123124 noUnusedLocals : { type : types . boolean } ,
125+ noUnusedParameters : { type : types . boolean } ,
124126 out : { type : types . string } ,
125127 outFile : { type : types . string } ,
126128 outDir : { type : types . string } ,
You can’t perform that action at this time.
0 commit comments