Skip to content

Commit 35bf7f6

Browse files
committed
fix(tsconfig) support stripInternal
closes #684
1 parent 7b86ce5 commit 35bf7f6

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
@@ -38,6 +38,7 @@ var compilerOptionsValidation = {
3838
rootDir: { type: types.string },
3939
sourceMap: { type: types.boolean },
4040
sourceRoot: { type: types.string },
41+
stripInternal: { type: types.boolean },
4142
suppressExcessPropertyErrors: { type: types.boolean },
4243
suppressImplicitAnyIndexErrors: { type: types.boolean },
4344
target: { type: types.string, validValues: ['es3', 'es5', 'es6'] },

lib/main/tsconfig/tsconfig.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ interface CompilerOptions {
5252
rootDir?: string;
5353
sourceMap?: boolean; // Generates SourceMaps (.map files)
5454
sourceRoot?: string; // Optionally specifies the location where debugger should locate TypeScript source files after deployment
55+
stripInternal?: boolean;
5556
suppressExcessPropertyErrors?: boolean; // Optionally disable strict object literal assignment checking
5657
suppressImplicitAnyIndexErrors?: boolean;
5758
target?: string; // 'es3'|'es5' (default)|'es6'
@@ -96,6 +97,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
9697
rootDir: { type: types.string },
9798
sourceMap: { type: types.boolean },
9899
sourceRoot: { type: types.string },
100+
stripInternal: { type: types.boolean },
99101
suppressExcessPropertyErrors: { type: types.boolean },
100102
suppressImplicitAnyIndexErrors: { type: types.boolean },
101103
target: { type: types.string, validValues: ['es3', 'es5', 'es6'] },

0 commit comments

Comments
 (0)