Skip to content

Commit 555ead6

Browse files
authored
Merge pull request #25806 from ajafff/expose-stripInternal
API: expose CompilerOptions.stripInternal
2 parents 1cedab1 + d5b3a28 commit 555ead6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/compiler/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4362,7 +4362,7 @@ namespace ts {
43624362
strictFunctionTypes?: boolean; // Always combine with strict property
43634363
strictNullChecks?: boolean; // Always combine with strict property
43644364
strictPropertyInitialization?: boolean; // Always combine with strict property
4365-
/* @internal */ stripInternal?: boolean;
4365+
stripInternal?: boolean;
43664366
suppressExcessPropertyErrors?: boolean;
43674367
suppressImplicitAnyIndexErrors?: boolean;
43684368
/* @internal */ suppressOutputPathCheck?: boolean;

tests/baselines/reference/api/tsserverlibrary.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2481,6 +2481,7 @@ declare namespace ts {
24812481
strictFunctionTypes?: boolean;
24822482
strictNullChecks?: boolean;
24832483
strictPropertyInitialization?: boolean;
2484+
stripInternal?: boolean;
24842485
suppressExcessPropertyErrors?: boolean;
24852486
suppressImplicitAnyIndexErrors?: boolean;
24862487
target?: ScriptTarget;

tests/baselines/reference/api/typescript.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2481,6 +2481,7 @@ declare namespace ts {
24812481
strictFunctionTypes?: boolean;
24822482
strictNullChecks?: boolean;
24832483
strictPropertyInitialization?: boolean;
2484+
stripInternal?: boolean;
24842485
suppressExcessPropertyErrors?: boolean;
24852486
suppressImplicitAnyIndexErrors?: boolean;
24862487
target?: ScriptTarget;

0 commit comments

Comments
 (0)