Skip to content

Commit bcc4e64

Browse files
committed
revert changes to tsbuild.ts
1 parent e2947fa commit bcc4e64

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/compiler/tsbuild.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ namespace ts {
2222
force?: boolean;
2323
verbose?: boolean;
2424

25-
clean?: boolean;
26-
watch?: boolean;
27-
help?: boolean;
25+
/*@internal*/ clean?: boolean;
26+
/*@internal*/ watch?: boolean;
27+
/*@internal*/ help?: boolean;
2828

2929
preserveWatchOutput?: boolean;
3030
listEmittedFiles?: boolean;
@@ -340,18 +340,18 @@ namespace ts {
340340
cleanAllProjects(): ExitStatus;
341341

342342
// TODO:: All the below ones should technically only be in watch mode. but thats for later time
343-
resolveProjectName(name: string): ResolvedConfigFileName;
344-
getUpToDateStatusOfFile(configFileName: ResolvedConfigFileName): UpToDateStatus;
345-
getBuildGraph(configFileNames: ReadonlyArray<string>): DependencyGraph;
343+
/*@internal*/ resolveProjectName(name: string): ResolvedConfigFileName;
344+
/*@internal*/ getUpToDateStatusOfFile(configFileName: ResolvedConfigFileName): UpToDateStatus;
345+
/*@internal*/ getBuildGraph(configFileNames: ReadonlyArray<string>): DependencyGraph;
346346

347-
invalidateProject(configFileName: string, reloadLevel?: ConfigFileProgramReloadLevel): void;
348-
buildInvalidatedProject(): void;
347+
/*@internal*/ invalidateProject(configFileName: string, reloadLevel?: ConfigFileProgramReloadLevel): void;
348+
/*@internal*/ buildInvalidatedProject(): void;
349349

350-
resetBuildContext(opts?: BuildOptions): void;
350+
/*@internal*/ resetBuildContext(opts?: BuildOptions): void;
351351
}
352352

353353
export interface SolutionBuilderWithWatch extends SolutionBuilder {
354-
startWatching(): void;
354+
/*@internal*/ startWatching(): void;
355355
}
356356

357357
/**

0 commit comments

Comments
 (0)