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 @@ -18,6 +18,7 @@ var compilerOptionsValidation = {
1818 emitDecoratorMetadata : { type : types . boolean } ,
1919 forceConsistentCasingInFileNames : { type : types . boolean } ,
2020 help : { type : types . boolean } ,
21+ importHelpers : { type : types . boolean } ,
2122 inlineSourceMap : { type : types . boolean } ,
2223 inlineSources : { type : types . boolean } ,
2324 isolatedModules : { type : types . boolean } ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ interface CompilerOptions {
3131 emitDecoratorMetadata ?: boolean ; // Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators
3232 forceConsistentCasingInFileNames ?: boolean ;
3333 help ?: boolean ;
34+ importHelpers ?: boolean ;
3435 isolatedModules ?: boolean ;
3536 inlineSourceMap ?: boolean ;
3637 inlineSources ?: boolean ;
@@ -97,6 +98,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
9798 emitDecoratorMetadata : { type : types . boolean } ,
9899 forceConsistentCasingInFileNames : { type : types . boolean } ,
99100 help : { type : types . boolean } ,
101+ importHelpers : { type : types . boolean } ,
100102 inlineSourceMap : { type : types . boolean } ,
101103 inlineSources : { type : types . boolean } ,
102104 isolatedModules : { type : types . boolean } ,
You can’t perform that action at this time.
0 commit comments