File tree 2 files changed +3
-0
lines changed 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ var compilerOptionsValidation = {
18
18
emitDecoratorMetadata : { type : types . boolean } ,
19
19
forceConsistentCasingInFileNames : { type : types . boolean } ,
20
20
help : { type : types . boolean } ,
21
+ importHelpers : { type : types . boolean } ,
21
22
inlineSourceMap : { type : types . boolean } ,
22
23
inlineSources : { type : types . boolean } ,
23
24
isolatedModules : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ interface CompilerOptions {
31
31
emitDecoratorMetadata ?: boolean ; // Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators
32
32
forceConsistentCasingInFileNames ?: boolean ;
33
33
help ?: boolean ;
34
+ importHelpers ?: boolean ;
34
35
isolatedModules ?: boolean ;
35
36
inlineSourceMap ?: boolean ;
36
37
inlineSources ?: boolean ;
@@ -97,6 +98,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
97
98
emitDecoratorMetadata : { type : types . boolean } ,
98
99
forceConsistentCasingInFileNames : { type : types . boolean } ,
99
100
help : { type : types . boolean } ,
101
+ importHelpers : { type : types . boolean } ,
100
102
inlineSourceMap : { type : types . boolean } ,
101
103
inlineSources : { type : types . boolean } ,
102
104
isolatedModules : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments