Skip to content

Commit da1fb07

Browse files
authored
Make noCheck non-internal on CompilerOptions (#60078)
1 parent 2074657 commit da1fb07

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/compiler/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7399,7 +7399,7 @@ export interface CompilerOptions {
73997399
moduleDetection?: ModuleDetectionKind;
74007400
newLine?: NewLineKind;
74017401
noEmit?: boolean;
7402-
/** @internal */ noCheck?: boolean;
7402+
noCheck?: boolean;
74037403
/** @internal */ noEmitForJsFiles?: boolean;
74047404
noEmitHelpers?: boolean;
74057405
noEmitOnError?: boolean;

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7022,6 +7022,7 @@ declare namespace ts {
70227022
moduleDetection?: ModuleDetectionKind;
70237023
newLine?: NewLineKind;
70247024
noEmit?: boolean;
7025+
noCheck?: boolean;
70257026
noEmitHelpers?: boolean;
70267027
noEmitOnError?: boolean;
70277028
noErrorTruncation?: boolean;

0 commit comments

Comments
 (0)