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
preserveConstEnums : { type : types . boolean } ,
45
45
removeComments : { type : types . boolean } ,
46
46
rootDir : { type : types . string } ,
47
+ skipDefaultLibCheck : { type : types . boolean } ,
47
48
sourceMap : { type : types . boolean } ,
48
49
sourceRoot : { type : types . string } ,
49
50
stripInternal : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ interface CompilerOptions {
57
57
preserveConstEnums ?: boolean ;
58
58
removeComments ?: boolean ; // Do not emit comments in output
59
59
rootDir ?: string ;
60
+ skipDefaultLibCheck ?: boolean ;
60
61
sourceMap ?: boolean ; // Generates SourceMaps (.map files)
61
62
sourceRoot ?: string ; // Optionally specifies the location where debugger should locate TypeScript source files after deployment
62
63
stripInternal ?: boolean ;
@@ -109,6 +110,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
109
110
preserveConstEnums : { type : types . boolean } ,
110
111
removeComments : { type : types . boolean } ,
111
112
rootDir : { type : types . string } ,
113
+ skipDefaultLibCheck : { type : types . boolean } ,
112
114
sourceMap : { type : types . boolean } ,
113
115
sourceRoot : { type : types . string } ,
114
116
stripInternal : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments