Make noCheck non-internal on CompilerOptions (#60078)

This commit is contained in:
Jake Bailey
2024-09-26 15:28:42 -07:00
committed by GitHub
parent 20746579b7
commit da1fb07db0
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -7399,7 +7399,7 @@ export interface CompilerOptions {
moduleDetection?: ModuleDetectionKind;
newLine?: NewLineKind;
noEmit?: boolean;
/** @internal */ noCheck?: boolean;
noCheck?: boolean;
/** @internal */ noEmitForJsFiles?: boolean;
noEmitHelpers?: boolean;
noEmitOnError?: boolean;
+1
View File
@@ -7022,6 +7022,7 @@ declare namespace ts {
moduleDetection?: ModuleDetectionKind;
newLine?: NewLineKind;
noEmit?: boolean;
noCheck?: boolean;
noEmitHelpers?: boolean;
noEmitOnError?: boolean;
noErrorTruncation?: boolean;