@@ -24,6 +24,7 @@ interface CompilerOptions {
24
24
charset ?: string ;
25
25
codepage ?: number ;
26
26
declaration ?: boolean ;
27
+ declarationDir ?: string ;
27
28
diagnostics ?: boolean ;
28
29
emitBOM ?: boolean ;
29
30
experimentalAsyncFunctions ?: boolean ;
@@ -69,6 +70,7 @@ interface CompilerOptions {
69
70
removeComments ?: boolean ; // Do not emit comments in output
70
71
rootDir ?: string ;
71
72
skipDefaultLibCheck ?: boolean ;
73
+ skipLibCheck ?: boolean ;
72
74
sourceMap ?: boolean ; // Generates SourceMaps (.map files)
73
75
sourceRoot ?: string ; // Optionally specifies the location where debugger should locate TypeScript source files after deployment
74
76
stripInternal ?: boolean ;
@@ -91,6 +93,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
91
93
charset : { type : types . string } ,
92
94
codepage : { type : types . number } ,
93
95
declaration : { type : types . boolean } ,
96
+ declarationDir : { type : types . string } ,
94
97
diagnostics : { type : types . boolean } ,
95
98
emitBOM : { type : types . boolean } ,
96
99
experimentalAsyncFunctions : { type : types . boolean } ,
@@ -136,6 +139,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
136
139
removeComments : { type : types . boolean } ,
137
140
rootDir : { type : types . string } ,
138
141
skipDefaultLibCheck : { type : types . boolean } ,
142
+ skipLibCheck : { type : types . boolean } ,
139
143
sourceMap : { type : types . boolean } ,
140
144
sourceRoot : { type : types . string } ,
141
145
strictNullChecks : { type : types . boolean } ,
@@ -144,7 +148,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
144
148
suppressImplicitAnyIndexErrors : { type : types . boolean } ,
145
149
target : { type : types . string , validValues : [ 'es3' , 'es5' , 'es6' , 'es2015' ] } ,
146
150
typeRoots : { type : types . array } ,
147
- types : { type : types . object } ,
151
+ types : { type : types . array } ,
148
152
version : { type : types . boolean } ,
149
153
watch : { type : types . boolean } ,
150
154
lib : { type : types . array }
0 commit comments