From 07a6b1c959068b590400ec9028c7e8f87056e435 Mon Sep 17 00:00:00 2001 From: Leonard Hecker Date: Fri, 7 Oct 2016 15:44:23 +0200 Subject: [PATCH] Support for tsconfig "importHelpers" --- dist/main/tsconfig/tsconfig.js | 1 + lib/main/tsconfig/tsconfig.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/dist/main/tsconfig/tsconfig.js b/dist/main/tsconfig/tsconfig.js index dd5ec7c6c..2d1df98da 100644 --- a/dist/main/tsconfig/tsconfig.js +++ b/dist/main/tsconfig/tsconfig.js @@ -18,6 +18,7 @@ var compilerOptionsValidation = { emitDecoratorMetadata: { type: types.boolean }, forceConsistentCasingInFileNames: { type: types.boolean }, help: { type: types.boolean }, + importHelpers: { type: types.boolean }, inlineSourceMap: { type: types.boolean }, inlineSources: { type: types.boolean }, isolatedModules: { type: types.boolean }, diff --git a/lib/main/tsconfig/tsconfig.ts b/lib/main/tsconfig/tsconfig.ts index 9a93d2cc2..4e8630bde 100644 --- a/lib/main/tsconfig/tsconfig.ts +++ b/lib/main/tsconfig/tsconfig.ts @@ -31,6 +31,7 @@ interface CompilerOptions { emitDecoratorMetadata?: boolean; // Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators forceConsistentCasingInFileNames?: boolean; help?: boolean; + importHelpers?: boolean; isolatedModules?: boolean; inlineSourceMap?: boolean; inlineSources?: boolean; @@ -97,6 +98,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = { emitDecoratorMetadata: { type: types.boolean }, forceConsistentCasingInFileNames: { type: types.boolean }, help: { type: types.boolean }, + importHelpers: { type: types.boolean }, inlineSourceMap: { type: types.boolean }, inlineSources: { type: types.boolean }, isolatedModules: { type: types.boolean },