Skip to content

Commit 654f675

Browse files
authored
Merge pull request #1091 from lhecker/master
Support for tsconfig "importHelpers"
2 parents 5138a8a + 07a6b1c commit 654f675

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dist/main/tsconfig/tsconfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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 },

lib/main/tsconfig/tsconfig.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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 },

0 commit comments

Comments
 (0)