revert changes to tsbuild.ts

This commit is contained in:
Klaus Meinhardt 2018-11-08 23:36:54 +01:00
parent e2947fac1c
commit bcc4e64832

View file

@ -22,9 +22,9 @@ namespace ts {
force?: boolean; force?: boolean;
verbose?: boolean; verbose?: boolean;
clean?: boolean; /*@internal*/ clean?: boolean;
watch?: boolean; /*@internal*/ watch?: boolean;
help?: boolean; /*@internal*/ help?: boolean;
preserveWatchOutput?: boolean; preserveWatchOutput?: boolean;
listEmittedFiles?: boolean; listEmittedFiles?: boolean;
@ -340,18 +340,18 @@ namespace ts {
cleanAllProjects(): ExitStatus; cleanAllProjects(): ExitStatus;
// TODO:: All the below ones should technically only be in watch mode. but thats for later time // TODO:: All the below ones should technically only be in watch mode. but thats for later time
resolveProjectName(name: string): ResolvedConfigFileName; /*@internal*/ resolveProjectName(name: string): ResolvedConfigFileName;
getUpToDateStatusOfFile(configFileName: ResolvedConfigFileName): UpToDateStatus; /*@internal*/ getUpToDateStatusOfFile(configFileName: ResolvedConfigFileName): UpToDateStatus;
getBuildGraph(configFileNames: ReadonlyArray<string>): DependencyGraph; /*@internal*/ getBuildGraph(configFileNames: ReadonlyArray<string>): DependencyGraph;
invalidateProject(configFileName: string, reloadLevel?: ConfigFileProgramReloadLevel): void; /*@internal*/ invalidateProject(configFileName: string, reloadLevel?: ConfigFileProgramReloadLevel): void;
buildInvalidatedProject(): void; /*@internal*/ buildInvalidatedProject(): void;
resetBuildContext(opts?: BuildOptions): void; /*@internal*/ resetBuildContext(opts?: BuildOptions): void;
} }
export interface SolutionBuilderWithWatch extends SolutionBuilder { export interface SolutionBuilderWithWatch extends SolutionBuilder {
startWatching(): void; /*@internal*/ startWatching(): void;
} }
/** /**