mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Tests for more state and remove some unnecessary logs (#57324)
This commit is contained in:
@@ -8,6 +8,8 @@ import {
|
||||
import {
|
||||
AutoImportProviderProject,
|
||||
AuxiliaryProject,
|
||||
isBackgroundProject,
|
||||
isConfiguredProject,
|
||||
LogLevel,
|
||||
Project,
|
||||
ProjectKind,
|
||||
@@ -21,6 +23,10 @@ import {
|
||||
interface ProjectData {
|
||||
projectStateVersion: Project["projectStateVersion"];
|
||||
projectProgramVersion: Project["projectProgramVersion"];
|
||||
dirty: Project["dirty"];
|
||||
isClosed: boolean;
|
||||
isOrphan: boolean;
|
||||
noOpenRef: boolean;
|
||||
autoImportProviderHost: Project["autoImportProviderHost"];
|
||||
noDtsResolutionProject: Project["noDtsResolutionProject"];
|
||||
originalConfiguredProjects: Project["originalConfiguredProjects"];
|
||||
@@ -83,6 +89,10 @@ export function patchServiceForStateBaseline(service: ProjectService) {
|
||||
const projectPropertyLogs = [] as string[];
|
||||
projectDiff = printProperty(PrintPropertyWhen.Always, data, "projectStateVersion", project.projectStateVersion, projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.Always, data, "projectProgramVersion", project.projectProgramVersion, projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.TruthyOrChangedOrNew, data, "dirty", project.dirty, projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.TruthyOrChangedOrNew, data, "isClosed", project.isClosed(), projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.TruthyOrChangedOrNew, data, "isOrphan", !isBackgroundProject(project) && project.isOrphan(), projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.TruthyOrChangedOrNew, data, "noOpenRef", isConfiguredProject(project) && !project.hasOpenRef(), projectDiff, projectPropertyLogs);
|
||||
projectDiff = printProperty(PrintPropertyWhen.DefinedOrChangedOrNew, data, "autoImportProviderHost", project.autoImportProviderHost, projectDiff, projectPropertyLogs, project.autoImportProviderHost ? project.autoImportProviderHost.projectName : project.autoImportProviderHost);
|
||||
projectDiff = printProperty(PrintPropertyWhen.DefinedOrChangedOrNew, data, "noDtsResolutionProject", project.noDtsResolutionProject, projectDiff, projectPropertyLogs, project.noDtsResolutionProject ? project.noDtsResolutionProject.projectName : project.noDtsResolutionProject);
|
||||
return printSetPropertyAndCreateStatementLog(
|
||||
@@ -100,6 +110,10 @@ export function patchServiceForStateBaseline(service: ProjectService) {
|
||||
project => ({
|
||||
projectStateVersion: project.projectStateVersion,
|
||||
projectProgramVersion: project.projectProgramVersion,
|
||||
dirty: project.dirty,
|
||||
isClosed: project.isClosed(),
|
||||
isOrphan: !isBackgroundProject(project) && project.isOrphan(),
|
||||
noOpenRef: isConfiguredProject(project) && !project.hasOpenRef(),
|
||||
autoImportProviderHost: project.autoImportProviderHost,
|
||||
noDtsResolutionProject: project.noDtsResolutionProject,
|
||||
originalConfiguredProjects: project.originalConfiguredProjects && new Set(project.originalConfiguredProjects),
|
||||
@@ -127,7 +141,7 @@ export function patchServiceForStateBaseline(service: ProjectService) {
|
||||
}
|
||||
return printSetPropertyAndCreateStatementLog(
|
||||
logs,
|
||||
`${info.fileName}${isOpen ? " (Open)" : ""}`,
|
||||
`${info.fileName}${info.isDynamic ? " (Dynamic)" : ""}${isOpen ? " (Open)" : ""}`,
|
||||
PrintPropertyWhen.Always,
|
||||
"containingProjects",
|
||||
infoPropertyLogs,
|
||||
|
||||
@@ -34,13 +34,6 @@ export function baselineTsserverLogs(scenario: string, subScenario: string, sess
|
||||
Harness.Baseline.runBaseline(`tsserver/${scenario}/${subScenario.split(" ").join("-")}.js`, sessionOrService.logger.logs.join("\r\n"));
|
||||
}
|
||||
|
||||
export function appendAllScriptInfos(session: TestSession) {
|
||||
session.logger.log("");
|
||||
session.logger.log(`ScriptInfos:`);
|
||||
session.getProjectService().filenameToScriptInfo.forEach(info => session.logger.log(`path: ${info.path} fileName: ${info.fileName}`));
|
||||
session.logger.log("");
|
||||
}
|
||||
|
||||
export function toExternalFile(fileName: string): ts.server.protocol.ExternalFile {
|
||||
return { fileName };
|
||||
}
|
||||
@@ -486,21 +479,9 @@ export function verifyGetErrScenario(scenario: VerifyGetErrScenario) {
|
||||
verifyErrorsUsingSyncMethods(scenario);
|
||||
}
|
||||
|
||||
export function verifyDynamic(session: TestSession, path: string) {
|
||||
session.logger.log(`${path} isDynamic:: ${session.getProjectService().filenameToScriptInfo.get(path)!.isDynamic}`);
|
||||
}
|
||||
|
||||
export function createHostWithSolutionBuild(files: readonly FileOrFolderOrSymLink[], rootNames: readonly string[]) {
|
||||
const host = createServerHost(files);
|
||||
// ts build should succeed
|
||||
ensureErrorFreeBuild(host, rootNames);
|
||||
return host;
|
||||
}
|
||||
|
||||
export function logInferredProjectsOrphanStatus(session: TestSession) {
|
||||
session.getProjectService().inferredProjects.forEach(inferredProject => session.logger.log(`Inferred project: ${inferredProject.projectName} isOrphan:: ${inferredProject.isOrphan()} isClosed: ${inferredProject.isClosed()}`));
|
||||
}
|
||||
|
||||
export function logConfiguredProjectsHasOpenRefStatus(session: TestSession) {
|
||||
session.getProjectService().configuredProjects.forEach(configuredProject => session.logger.log(`Configured project: ${configuredProject.projectName} hasOpenRef:: ${configuredProject.hasOpenRef()} isClosed: ${configuredProject.isClosed()}`));
|
||||
}
|
||||
|
||||
@@ -95,11 +95,7 @@ describe("unittests:: tsserver:: autoImportProvider", () => {
|
||||
it("Auto-importable file is in inferred project until imported", () => {
|
||||
const { session, updateFile } = setup([angularFormsDts, angularFormsPackageJson, tsconfig, packageJson, indexTs]);
|
||||
openFilesForSession([angularFormsDts], session);
|
||||
session.logger.log(`Default Project for ${angularFormsDts.path}:: ${session.getProjectService().getDefaultProjectForFile(angularFormsDts.path as ts.server.NormalizedPath, /*ensureProject*/ true)?.projectName}`);
|
||||
|
||||
updateFile(indexTs.path, "import '@angular/forms'");
|
||||
session.logger.log(`Default Project for ${angularFormsDts.path}:: ${session.getProjectService().getDefaultProjectForFile(angularFormsDts.path as ts.server.NormalizedPath, /*ensureProject*/ true)?.projectName}`);
|
||||
|
||||
assert.isUndefined(session.getProjectService().configuredProjects.get(tsconfig.path)!.getLanguageService().getAutoImportProvider());
|
||||
session.host.baselineHost("After getAutoImportProvider");
|
||||
baselineTsserverLogs("autoImportProvider", "Auto-importable file is in inferred project until imported", session);
|
||||
|
||||
@@ -1022,11 +1022,6 @@ describe("unittests:: tsserver:: compileOnSave:: CompileOnSaveAffectedFileListRe
|
||||
});
|
||||
}
|
||||
|
||||
function logDirtyOfProjects(session: TestSession) {
|
||||
session.logger.log(`Project1 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app1/tsconfig.json`)!.dirty}`);
|
||||
session.logger.log(`Project2 is dirty: ${session.getProjectService().configuredProjects.get(`/user/username/projects/myproject/app2/tsconfig.json`)!.dirty}`);
|
||||
}
|
||||
|
||||
function verify(subScenario: string, commandArgs: ts.server.protocol.FileRequestArgs) {
|
||||
it(subScenario, () => {
|
||||
const core: File = {
|
||||
@@ -1063,12 +1058,10 @@ describe("unittests:: tsserver:: compileOnSave:: CompileOnSaveAffectedFileListRe
|
||||
openFilesForSession([app1, app2, core], session);
|
||||
insertString(session, app1);
|
||||
insertString(session, app2);
|
||||
logDirtyOfProjects(session);
|
||||
session.executeCommandSeq<ts.server.protocol.CompileOnSaveAffectedFileListRequest>({
|
||||
command: ts.server.protocol.CommandTypes.CompileOnSaveAffectedFileList,
|
||||
arguments: commandArgs,
|
||||
});
|
||||
logDirtyOfProjects(session);
|
||||
baselineTsserverLogs("compileOnSave", subScenario, session);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -12,8 +12,6 @@ import {
|
||||
import {
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
logConfiguredProjectsHasOpenRefStatus,
|
||||
logInferredProjectsOrphanStatus,
|
||||
openFilesForSession,
|
||||
TestSession,
|
||||
verifyGetErrRequest,
|
||||
@@ -230,8 +228,6 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
|
||||
// will not remove project 1
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
// Open random file and it will reuse first inferred project
|
||||
openFilesForSession([randomFile], session);
|
||||
baselineTsserverLogs("configuredProjects", "should properly handle module resolution changes in config file", session);
|
||||
@@ -301,13 +297,8 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
const host = createServerHost([file1, file2, configFile, libFile]);
|
||||
const session = new TestSession({ host, useSingleInferredProject: true });
|
||||
openFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file1
|
||||
|
||||
closeFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No open files
|
||||
|
||||
openFilesForSession([file2], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file2
|
||||
baselineTsserverLogs("configuredProjects", "should reuse same project if file is opened from the configured project that has no open files", session);
|
||||
});
|
||||
|
||||
@@ -328,13 +319,8 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
const host = createServerHost([file1, configFile, libFile]);
|
||||
const session = new TestSession({ host, useSingleInferredProject: true });
|
||||
openFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file1
|
||||
|
||||
closeFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files
|
||||
|
||||
openFilesForSession([libFile], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files + project closed
|
||||
baselineTsserverLogs("configuredProjects", "should not close configured project after closing last open file, but should be closed on next file open if its not the file from same project", session);
|
||||
});
|
||||
|
||||
@@ -362,7 +348,6 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
|
||||
host.writeFile(configFile.path, configFile.content);
|
||||
host.runQueuedTimeoutCallbacks(); // load configured project from disk + ensureProjectsForOpenFiles
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("configuredProjects", "open file become a part of configured project if it is referenced from root file", session);
|
||||
});
|
||||
|
||||
@@ -466,24 +451,11 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
const session = new TestSession(host);
|
||||
openFilesForSession([file1, file2, file3, file4], session);
|
||||
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file1 and file3
|
||||
|
||||
host.writeFile(configFile.path, "{}");
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file1, file2, file3
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
closeFilesForSession([file1, file2, file4], session);
|
||||
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file3
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file4], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file3
|
||||
|
||||
closeFilesForSession([file3], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files
|
||||
|
||||
const file5: File = {
|
||||
path: "/file5.ts",
|
||||
@@ -523,23 +495,15 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
const host = createServerHost(hostFiles);
|
||||
const session = new TestSession(host);
|
||||
openFilesForSession([file1, file2, file3], session);
|
||||
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file1 and file3
|
||||
|
||||
closeFilesForSession([file1, file3], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files
|
||||
|
||||
host.writeFile(configFile.path, "{}");
|
||||
session.host.baselineHost("configFile updated");
|
||||
// Time out is not yet run so there is project update pending
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // Pending update and file2 might get into the project
|
||||
|
||||
openFilesForSession([file4], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // Pending update and F2 might get into the project
|
||||
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // file2
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("configuredProjects", "Open ref of configured project when open file gets added to the project as part of configured file update buts its open file references are all closed when the update happens", session);
|
||||
});
|
||||
|
||||
@@ -566,29 +530,13 @@ describe("unittests:: tsserver:: ConfiguredProjects", () => {
|
||||
|
||||
const session = new TestSession(host);
|
||||
openFilesForSession([f1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // f1
|
||||
|
||||
closeFilesForSession([f1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files
|
||||
|
||||
for (const f of [f1, f2, f3]) {
|
||||
// All the script infos should be present and contain the project since it is still alive.
|
||||
const scriptInfo = session.getProjectService().getScriptInfoForNormalizedPath(ts.server.toNormalizedPath(f.path))!;
|
||||
session.logger.log(`Containing projects for ${f.path}:: ${scriptInfo.containingProjects.map(p => p.projectName).join(",")}`);
|
||||
}
|
||||
|
||||
const f4 = {
|
||||
path: "/aa.js",
|
||||
content: "var x = 1",
|
||||
};
|
||||
host.writeFile(f4.path, f4.content);
|
||||
openFilesForSession([f4], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session); // No files
|
||||
|
||||
for (const f of [f1, f2, f3]) {
|
||||
// All the script infos should not be present since the project is closed and orphan script infos are collected
|
||||
assert.isUndefined(session.getProjectService().getScriptInfoForNormalizedPath(ts.server.toNormalizedPath(f.path)));
|
||||
}
|
||||
baselineTsserverLogs("configuredProjects", "files are properly detached when language service is disabled", session);
|
||||
});
|
||||
|
||||
|
||||
@@ -6,7 +6,6 @@ import {
|
||||
protocolFileLocationFromSubstring,
|
||||
setCompilerOptionsForInferredProjectsRequestForSession,
|
||||
TestSession,
|
||||
verifyDynamic,
|
||||
} from "../helpers/tsserver";
|
||||
import {
|
||||
createServerHost,
|
||||
@@ -25,8 +24,6 @@ var x = 10;`,
|
||||
const host = createServerHost([libFile]);
|
||||
const session = new TestSession(host);
|
||||
openFilesForSession([{ file, content: file.content }], session);
|
||||
verifyDynamic(session, session.getProjectService().toPath(file.path));
|
||||
|
||||
baselineTsserverLogs("dynamicFiles", subscenario, session);
|
||||
});
|
||||
}
|
||||
@@ -50,7 +47,6 @@ describe("unittests:: tsserver:: dynamicFiles:: Untitled files", () => {
|
||||
projectRootPath: "/proj",
|
||||
},
|
||||
});
|
||||
verifyDynamic(session, `/proj/untitled:^untitled-1`);
|
||||
session.executeCommandSeq<ts.server.protocol.CodeFixRequest>({
|
||||
command: ts.server.protocol.CommandTypes.GetCodeFixes,
|
||||
arguments: {
|
||||
@@ -77,7 +73,6 @@ describe("unittests:: tsserver:: dynamicFiles:: Untitled files", () => {
|
||||
content: "const x = 10;",
|
||||
projectRootPath: "/user/username/projects/myproject",
|
||||
}], session);
|
||||
verifyDynamic(session, `/user/username/projects/myproject/${untitledFile}`);
|
||||
|
||||
const untitled: File = {
|
||||
path: `/user/username/projects/myproject/Untitled-1.ts`,
|
||||
@@ -97,7 +92,6 @@ describe("unittests:: tsserver:: dynamicFiles:: Untitled files", () => {
|
||||
content: "const x = 10;",
|
||||
projectRootPath: "/user/username/projects/myproject",
|
||||
}], session);
|
||||
verifyDynamic(session, `/user/username/projects/myproject/${untitledFile}`);
|
||||
baselineTsserverLogs("dynamicFiles", "opening untitled files", session);
|
||||
});
|
||||
|
||||
@@ -117,7 +111,6 @@ describe("unittests:: tsserver:: dynamicFiles:: Untitled files", () => {
|
||||
content: "const x = 10;",
|
||||
projectRootPath: "/user/username/projects/myproject",
|
||||
}], session);
|
||||
verifyDynamic(session, `/user/username/projects/myproject/${untitledFile}`);
|
||||
|
||||
// Close untitled file
|
||||
closeFilesForSession([untitledFile], session);
|
||||
@@ -173,8 +166,6 @@ describe("unittests:: tsserver:: dynamicFiles:: ", () => {
|
||||
}, session);
|
||||
openFilesForSession([{ file: file.path, content: "var x = 10;" }], session);
|
||||
|
||||
verifyDynamic(session, `/${file.path}`);
|
||||
|
||||
session.executeCommandSeq<ts.server.protocol.QuickInfoRequest>({
|
||||
command: ts.server.protocol.CommandTypes.Quickinfo,
|
||||
arguments: protocolFileLocationFromSubstring(file, "x"),
|
||||
@@ -202,8 +193,6 @@ describe("unittests:: tsserver:: dynamicFiles:: ", () => {
|
||||
const session = new TestSession({ host, useInferredProjectPerProjectRoot: true });
|
||||
openFilesForSession([{ file: file.path, projectRootPath: "/user/username/projects/myproject" }], session);
|
||||
|
||||
verifyDynamic(session, `/user/username/projects/myproject/${file.path}`);
|
||||
|
||||
session.executeCommandSeq<ts.server.protocol.OutliningSpansRequest>({
|
||||
command: ts.server.protocol.CommandTypes.GetOutliningSpans,
|
||||
arguments: {
|
||||
|
||||
@@ -6,15 +6,12 @@ import {
|
||||
import {
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
logConfiguredProjectsHasOpenRefStatus,
|
||||
logInferredProjectsOrphanStatus,
|
||||
openExternalProjectForSession,
|
||||
openExternalProjectsForSession,
|
||||
openFilesForSession,
|
||||
TestSession,
|
||||
toExternalFile,
|
||||
toExternalFiles,
|
||||
verifyDynamic,
|
||||
} from "../helpers/tsserver";
|
||||
import {
|
||||
createServerHost,
|
||||
@@ -176,8 +173,6 @@ describe("unittests:: tsserver:: externalProjects", () => {
|
||||
projectFileName,
|
||||
}, session);
|
||||
|
||||
verifyDynamic(session, "/^scriptdocument1 file1.ts");
|
||||
|
||||
externalFiles[0].content = "let x =1;";
|
||||
session.executeCommandSeq<ts.server.protocol.ApplyChangedToOpenFilesRequest>({
|
||||
command: ts.server.protocol.CommandTypes.ApplyChangedToOpenFiles,
|
||||
@@ -252,23 +247,16 @@ describe("unittests:: tsserver:: externalProjects", () => {
|
||||
|
||||
// open client file - should not lead to creation of inferred project
|
||||
openFilesForSession([file1], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file3], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
session.executeCommandSeq<ts.server.protocol.CloseExternalProjectRequest>({
|
||||
command: ts.server.protocol.CommandTypes.CloseExternalProject,
|
||||
arguments: { projectFileName },
|
||||
});
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
// open file 'file1' from configured project keeps project alive
|
||||
|
||||
closeFilesForSession([file3], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
closeFilesForSession([file1], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file2], session);
|
||||
baselineTsserverLogs("externalProjects", "external project that included config files", session);
|
||||
@@ -714,12 +702,9 @@ describe("unittests:: tsserver:: externalProjects", () => {
|
||||
const host = createServerHost([f, config]);
|
||||
const session = new TestSession(host);
|
||||
openFilesForSession([f], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
closeFilesForSession([f], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
|
||||
openFilesForSession([f], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
baselineTsserverLogs("externalProjects", "should handle non-existing directories in config file", session);
|
||||
});
|
||||
|
||||
@@ -814,7 +799,6 @@ describe("unittests:: tsserver:: externalProjects", () => {
|
||||
rootFiles: [{ fileName: jsConfig.path }, { fileName: tsconfig.path }, { fileName: jsFilePath }],
|
||||
options: { allowJs: false },
|
||||
}], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("externalProjects", "handles creation of external project with jsconfig before jsconfig creation watcher is invoked", session);
|
||||
});
|
||||
|
||||
|
||||
@@ -11,7 +11,6 @@ import {
|
||||
import {
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
logInferredProjectsOrphanStatus,
|
||||
openFilesForSession,
|
||||
setCompilerOptionsForInferredProjectsRequestForSession,
|
||||
TestSession,
|
||||
@@ -107,7 +106,6 @@ describe("unittests:: tsserver:: inferredProjects", () => {
|
||||
moduleResolution: ts.server.protocol.ModuleResolutionKind.Classic,
|
||||
}, session);
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("inferredProjects", "project settings for inferred projects", session);
|
||||
});
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@ import {
|
||||
jsonToReadableText,
|
||||
} from "../helpers";
|
||||
import {
|
||||
appendAllScriptInfos,
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
openExternalProjectForSession,
|
||||
@@ -241,7 +240,6 @@ describe("unittests:: tsserver:: projectErrors:: are reported as appropriate", (
|
||||
projectRootPath: useProjectRoot ? folderPath : undefined,
|
||||
},
|
||||
});
|
||||
appendAllScriptInfos(session);
|
||||
|
||||
// Since this is not js project so no typings are queued
|
||||
verifyGetErrRequest({ session, files: [untitledFile] });
|
||||
|
||||
@@ -12,8 +12,6 @@ import {
|
||||
import {
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
logConfiguredProjectsHasOpenRefStatus,
|
||||
logInferredProjectsOrphanStatus,
|
||||
openExternalProjectForSession,
|
||||
openFilesForSession,
|
||||
protocolFileLocationFromSubstring,
|
||||
@@ -325,7 +323,6 @@ describe("unittests:: tsserver:: projects::", () => {
|
||||
|
||||
host.writeFile(file2.path, `export * from "../c/f3"`); // now inferred project should inclule file3
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("projects", "changes in closed files are reflected in project structure", session);
|
||||
});
|
||||
|
||||
@@ -512,22 +509,11 @@ describe("unittests:: tsserver:: projects::", () => {
|
||||
const session = new TestSession(host);
|
||||
|
||||
openFilesForSession([file2], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file3], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file1], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
closeFilesForSession([file1], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
closeFilesForSession([file3], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
|
||||
openFilesForSession([file3], session);
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
baselineTsserverLogs("projects", "correctly migrate files between projects", session);
|
||||
});
|
||||
|
||||
@@ -892,19 +878,10 @@ describe("unittests:: tsserver:: projects::", () => {
|
||||
const session = new TestSession(host);
|
||||
|
||||
openFilesForSession([file2], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
|
||||
openFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
|
||||
closeFilesForSession([file2], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
|
||||
closeFilesForSession([file1], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
|
||||
openFilesForSession([file2], session);
|
||||
logConfiguredProjectsHasOpenRefStatus(session);
|
||||
baselineTsserverLogs("projects", "File in multiple projects at opened and closed correctly", session);
|
||||
});
|
||||
|
||||
@@ -1183,19 +1160,11 @@ describe("unittests:: tsserver:: projects::", () => {
|
||||
host.writeFile(config.path, config.content);
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
|
||||
verifyFile2InfoIsOrphan();
|
||||
|
||||
file2.content += "export let z = 10;";
|
||||
host.writeFile(file2.path, file2.content);
|
||||
host.runQueuedTimeoutCallbacks();
|
||||
|
||||
verifyFile2InfoIsOrphan();
|
||||
baselineTsserverLogs("projects", "Orphan source files are handled correctly on watch trigger", session);
|
||||
|
||||
function verifyFile2InfoIsOrphan() {
|
||||
const info = ts.Debug.checkDefined(session.getProjectService().getScriptInfoForPath(file2.path as ts.Path));
|
||||
session.logger.log(`Containing projects for ${file2.path}:: ${info.containingProjects.map(p => p.projectName).join(",")}`);
|
||||
}
|
||||
});
|
||||
|
||||
it("no project structure update on directory watch invoke on open file save", () => {
|
||||
|
||||
@@ -2,7 +2,6 @@ import * as ts from "../../_namespaces/ts";
|
||||
import {
|
||||
baselineTsserverLogs,
|
||||
closeFilesForSession,
|
||||
logInferredProjectsOrphanStatus,
|
||||
openFilesForSession,
|
||||
TestSession,
|
||||
} from "../helpers/tsserver";
|
||||
@@ -71,7 +70,6 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
// send close request
|
||||
closeFilesForSession([f1], session);
|
||||
checkScriptInfoAndProjects("contents of closed file");
|
||||
checkInferredProjectIsOrphan();
|
||||
|
||||
// Can reload contents of the file when its not open and has no project
|
||||
// reload from temp file
|
||||
@@ -80,7 +78,6 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
arguments: { file: f1.path, tmpfile: tmp.path },
|
||||
});
|
||||
checkScriptInfoAndProjects("contents of temp file");
|
||||
checkInferredProjectIsOrphan();
|
||||
|
||||
// reload from own file
|
||||
session.executeCommandSeq<ts.server.protocol.ReloadRequest>({
|
||||
@@ -88,7 +85,6 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
arguments: { file: f1.path, tmpfile: undefined! },
|
||||
});
|
||||
checkScriptInfoAndProjects("contents of closed file");
|
||||
checkInferredProjectIsOrphan();
|
||||
|
||||
// Open file again without setting its content
|
||||
openFilesForSession([f1], session);
|
||||
@@ -99,7 +95,6 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
closeFilesForSession([f1], session);
|
||||
checkScriptInfoAndProjects("contents of closed file");
|
||||
assert.strictEqual(info.getSnapshot(), snap);
|
||||
checkInferredProjectIsOrphan();
|
||||
|
||||
// reload from temp file
|
||||
session.executeCommandSeq<ts.server.protocol.ReloadRequest>({
|
||||
@@ -108,7 +103,6 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
});
|
||||
checkScriptInfoAndProjects("contents of temp file");
|
||||
assert.notStrictEqual(info.getSnapshot(), snap);
|
||||
checkInferredProjectIsOrphan();
|
||||
|
||||
// reload from own file
|
||||
session.executeCommandSeq<ts.server.protocol.ReloadRequest>({
|
||||
@@ -117,14 +111,8 @@ describe("unittests:: tsserver:: reload", () => {
|
||||
});
|
||||
checkScriptInfoAndProjects("contents of closed file");
|
||||
assert.notStrictEqual(info.getSnapshot(), snap);
|
||||
checkInferredProjectIsOrphan();
|
||||
baselineTsserverLogs("reload", "should work when script info doesnt have any project open", session);
|
||||
|
||||
function checkInferredProjectIsOrphan() {
|
||||
logInferredProjectsOrphanStatus(session);
|
||||
session.logger.log(`info:: ${info.path}:: ${info.containingProjects.map(p => p.projectName).join(",")}`);
|
||||
}
|
||||
|
||||
function checkScriptInfoAndProjects(captionForContents: string) {
|
||||
assert.strictEqual(session.getProjectService().getScriptInfo(f1.path), info);
|
||||
checkScriptInfoContents(captionForContents);
|
||||
|
||||
-2
@@ -207,7 +207,6 @@ Projects::
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
|
||||
Default Project for /node_modules/@angular/forms/forms.d.ts:: /dev/null/inferredProject1*
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -436,5 +435,4 @@ ScriptInfos::
|
||||
/dev/null/inferredProject1*
|
||||
/tsconfig.json *default* *new*
|
||||
|
||||
Default Project for /node_modules/@angular/forms/forms.d.ts:: /tsconfig.json
|
||||
After getAutoImportProvider
|
||||
|
||||
+13
@@ -286,6 +286,16 @@ FsWatchesRecursive::
|
||||
/node_modules:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -398,6 +408,7 @@ Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
/dev/null/autoImportProviderProject2* (AutoImportProvider) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -408,6 +419,8 @@ Projects::
|
||||
/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
autoImportProviderHost: undefined *changed*
|
||||
|
||||
ScriptInfos::
|
||||
|
||||
+5
@@ -261,6 +261,8 @@ Projects::
|
||||
/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/node_modules/@angular/forms/forms.d.ts *new*
|
||||
@@ -644,6 +646,7 @@ Projects::
|
||||
/packages/a/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
originalConfiguredProjects: 3
|
||||
/packages/b/tsconfig.json
|
||||
/tsconfig.json
|
||||
@@ -655,6 +658,8 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
dirty: false *changed*
|
||||
noOpenRef: true
|
||||
originalConfiguredProjects: 3 *changed*
|
||||
/packages/b/tsconfig.json *new*
|
||||
/tsconfig.json *new*
|
||||
|
||||
+13
@@ -291,9 +291,11 @@ Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
ScriptInfos::
|
||||
@@ -330,6 +332,17 @@ Info seq [hh:mm:ss:mss] Files (2)
|
||||
Info seq [hh:mm:ss:mss] -----------------------------------------------
|
||||
After getAutoImportProvider
|
||||
|
||||
Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open)
|
||||
version: SVC-1-0
|
||||
|
||||
+15
@@ -404,6 +404,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
TI:: [hh:mm:ss:mss] Got install request
|
||||
@@ -560,6 +561,7 @@ Projects::
|
||||
/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /tsconfig.json
|
||||
@@ -578,6 +580,19 @@ Info seq [hh:mm:ss:mss] getCompletionData: Semantic work: *
|
||||
Info seq [hh:mm:ss:mss] getCompletionsAtPosition: getCompletionEntriesFromSymbols: *
|
||||
Before request
|
||||
|
||||
Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
"command": "applyChangedToOpenFiles",
|
||||
|
||||
+2
@@ -287,6 +287,7 @@ Projects::
|
||||
/users/username/projects/proj/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
5: /users/username/projects/proj/tsconfig.json
|
||||
@@ -377,6 +378,7 @@ Projects::
|
||||
/users/username/projects/proj/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -287,6 +287,7 @@ Projects::
|
||||
/users/username/projects/proj/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
5: /users/username/projects/proj/tsconfig.json
|
||||
@@ -377,6 +378,7 @@ Projects::
|
||||
/users/username/projects/proj/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+1
@@ -366,6 +366,7 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/bar.d.ts 500 undefined WatchType: Closed Script info
|
||||
|
||||
+2
@@ -729,6 +729,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
@@ -2116,6 +2117,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+6
@@ -732,6 +732,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one
|
||||
@@ -792,6 +793,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
@@ -1330,6 +1332,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 2
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one
|
||||
@@ -1390,6 +1393,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 3 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations
|
||||
@@ -2156,6 +2160,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4 *changed*
|
||||
projectProgramVersion: 3
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one
|
||||
@@ -2270,6 +2275,7 @@ Projects::
|
||||
/user/username/rootfolder/otherfolder/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4
|
||||
projectProgramVersion: 4 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -341,6 +341,7 @@ Projects::
|
||||
/Users/someuser/work/applications/frontend/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /Users/someuser/work/applications/frontend/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -419,6 +420,7 @@ Projects::
|
||||
/Users/someuser/work/applications/frontend/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts
|
||||
|
||||
+2
@@ -341,6 +341,7 @@ Projects::
|
||||
/Users/someuser/work/applications/frontend/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /Users/someuser/work/applications/frontend/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -419,6 +420,7 @@ Projects::
|
||||
/Users/someuser/work/applications/frontend/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts
|
||||
|
||||
+2
@@ -240,6 +240,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/client/linktofolder2/module3.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -322,6 +323,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -255,6 +255,7 @@ Projects::
|
||||
/user/username/folder/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/folder/myproject/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
|
||||
@@ -313,6 +314,7 @@ Projects::
|
||||
/user/username/folder/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+1
@@ -328,6 +328,7 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 5 *changed*
|
||||
projectProgramVersion: 3
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Starting updateGraphWorker: Project: /dev/null/inferredProject1*
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* projectStateVersion: 5 projectProgramVersion: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms
|
||||
|
||||
+12
-4
@@ -509,6 +509,7 @@ Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -559,9 +560,11 @@ Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -583,8 +586,6 @@ ScriptInfos::
|
||||
/user/username/projects/myproject/app1/tsconfig.json *default*
|
||||
/user/username/projects/myproject/app2/tsconfig.json
|
||||
|
||||
Project1 is dirty: true
|
||||
Project2 is dirty: true
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -668,5 +669,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Project1 is dirty: false
|
||||
Project2 is dirty: false
|
||||
Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+12
-4
@@ -509,6 +509,7 @@ Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -559,9 +560,11 @@ Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -583,8 +586,6 @@ ScriptInfos::
|
||||
/user/username/projects/myproject/app1/tsconfig.json *default*
|
||||
/user/username/projects/myproject/app2/tsconfig.json
|
||||
|
||||
Project1 is dirty: true
|
||||
Project2 is dirty: true
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -621,5 +622,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Project1 is dirty: false
|
||||
Project2 is dirty: true
|
||||
Projects::
|
||||
/user/username/projects/myproject/app1/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
/user/username/projects/myproject/app2/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
|
||||
+7
@@ -339,6 +339,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open)
|
||||
@@ -445,3 +446,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+14
@@ -286,6 +286,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open)
|
||||
@@ -338,6 +339,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -364,6 +371,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open)
|
||||
@@ -414,3 +422,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+7
@@ -254,6 +254,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -338,3 +339,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
@@ -217,6 +217,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -267,3 +268,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+14
@@ -359,6 +359,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open)
|
||||
@@ -427,6 +428,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -453,6 +460,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open)
|
||||
@@ -518,3 +526,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
@@ -220,6 +220,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -270,3 +271,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
@@ -251,6 +251,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/moduleFile1.ts *deleted*
|
||||
@@ -332,6 +333,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
|
||||
+2
@@ -274,6 +274,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts *changed*
|
||||
@@ -393,6 +394,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts *changed*
|
||||
|
||||
+2
@@ -283,6 +283,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -426,3 +427,4 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
+9
@@ -276,6 +276,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/file1Consumer3.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -366,6 +367,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -423,6 +425,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 2
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts
|
||||
@@ -496,3 +499,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 2
|
||||
dirty: false *changed*
|
||||
|
||||
+4
@@ -359,6 +359,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open) *changed*
|
||||
@@ -478,6 +479,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
@@ -505,6 +507,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 2
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file1Consumer1.ts (Open) *changed*
|
||||
@@ -625,3 +628,4 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 3 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
@@ -484,6 +484,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -559,6 +560,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -624,6 +631,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -699,6 +707,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
|
||||
+14
@@ -537,6 +537,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -617,6 +618,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -682,6 +689,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -762,6 +770,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
|
||||
@@ -507,6 +507,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -587,6 +588,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -651,6 +658,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -734,6 +742,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
|
||||
@@ -461,6 +461,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -536,6 +537,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -600,6 +607,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
@@ -677,6 +685,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
|
||||
@@ -298,6 +298,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before request
|
||||
|
||||
@@ -363,6 +364,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
@@ -301,6 +301,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before request
|
||||
|
||||
@@ -375,6 +376,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -297,6 +297,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before request
|
||||
|
||||
@@ -361,6 +362,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+7
@@ -3469,6 +3469,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -16925,3 +16926,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+7
@@ -3419,6 +3419,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -54125,3 +54126,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+21
@@ -2369,6 +2369,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -6227,6 +6228,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -6266,6 +6273,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -7032,6 +7040,12 @@ Info seq [hh:mm:ss:mss] Files (151)
|
||||
Info seq [hh:mm:ss:mss] -----------------------------------------------
|
||||
Before request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
"command": "updateOpen",
|
||||
@@ -7069,6 +7083,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -11274,3 +11289,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+14
@@ -1686,6 +1686,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -4688,6 +4689,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -4727,6 +4734,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -7723,3 +7731,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+22
@@ -2262,6 +2262,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
ScriptInfos::
|
||||
@@ -6195,6 +6196,16 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -6237,6 +6248,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
ScriptInfos::
|
||||
@@ -10498,6 +10510,16 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/dev/null/autoImportProviderProject1* (AutoImportProvider)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
autoImportProviderHost: /dev/null/autoImportProviderProject1*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
|
||||
@@ -3769,6 +3769,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -9427,6 +9428,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -9466,6 +9473,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -15819,6 +15827,12 @@ Info seq [hh:mm:ss:mss] response:
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -15858,6 +15872,7 @@ Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/index.ts (Open) *changed*
|
||||
@@ -22559,3 +22574,9 @@ Info seq [hh:mm:ss:mss] response:
|
||||
"responseRequired": true
|
||||
}
|
||||
After request
|
||||
|
||||
Projects::
|
||||
/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+5
@@ -95,6 +95,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/file1.ts *changed*
|
||||
@@ -302,6 +304,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+2
@@ -244,6 +244,8 @@ Projects::
|
||||
/a/b/projects/project/src/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/file1.ts (Open) *changed*
|
||||
|
||||
+2
@@ -244,6 +244,8 @@ Projects::
|
||||
/a/b/projects/project/src/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/file1.ts (Open) *changed*
|
||||
|
||||
+7
@@ -155,6 +155,7 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
dirty: true
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -340,9 +341,11 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
dirty: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/index.ts (Open) *changed*
|
||||
@@ -412,9 +415,12 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
isOrphan: true
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/index.ts (Open) *changed*
|
||||
@@ -500,6 +506,7 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 3 *changed*
|
||||
isOrphan: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/index.ts (Open) *changed*
|
||||
|
||||
@@ -233,6 +233,8 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/index.ts (Open) *changed*
|
||||
@@ -383,6 +385,7 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
dirty: true
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -527,9 +530,11 @@ Projects::
|
||||
/a/b/projects/project/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
dirty: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/projects/project/src/index.ts (Open) *changed*
|
||||
|
||||
+14
-8
@@ -416,7 +416,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject1* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -518,6 +517,15 @@ FsWatches::
|
||||
/a/b/tsconfig.json:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file3.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -533,7 +541,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject1* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: false isClosed: false
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Search path: /a/b/src
|
||||
@@ -554,11 +561,12 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -611,6 +619,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -636,7 +645,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject2* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before running Timeout callback:: count: 2
|
||||
2: /a/b/tsconfig.json
|
||||
3: *ensureProjectForOpenFiles*
|
||||
@@ -831,9 +839,11 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -856,7 +866,3 @@ ScriptInfos::
|
||||
version: SVC-1-0
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject2* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject2* isOrphan:: false isClosed: false
|
||||
+22
-10
@@ -497,7 +497,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject2* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Search path: /a/b/src
|
||||
@@ -520,6 +519,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -723,9 +723,11 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -749,9 +751,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject2* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject2* isOrphan:: false isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -956,9 +955,12 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file3.ts (Open)
|
||||
@@ -979,9 +981,6 @@ ScriptInfos::
|
||||
containingProjects: 0 *changed*
|
||||
/dev/null/inferredProject2* *deleted*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject2* isOrphan:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -1058,9 +1057,13 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
isOrphan: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file3.ts (Open)
|
||||
@@ -1081,7 +1084,6 @@ ScriptInfos::
|
||||
containingProjects: 1 *changed*
|
||||
/dev/null/inferredProject2* *default* *new*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -1129,6 +1131,15 @@ FsWatchesRecursive::
|
||||
/a/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
noOpenRef: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/file3.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -1148,7 +1159,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/dev/null/inferredProject2* *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: false isClosed: false
|
||||
File5 written
|
||||
//// [/file5.ts]
|
||||
let zz = 1;
|
||||
@@ -1243,6 +1253,8 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
|
||||
+7
@@ -226,6 +226,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
dirty: true
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Loading configured project /user/username/projects/myproject/tsconfig.json
|
||||
@@ -390,12 +391,14 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts *changed*
|
||||
@@ -449,12 +452,15 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts *changed*
|
||||
@@ -534,6 +540,7 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 3 *changed*
|
||||
isOrphan: false *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+2
@@ -187,6 +187,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -254,6 +255,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/commonFile1.ts (Open)
|
||||
|
||||
+2
@@ -223,6 +223,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /a/b/tsconfig.json
|
||||
@@ -371,6 +372,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/f1.ts (Open)
|
||||
|
||||
+2
@@ -217,6 +217,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -283,6 +284,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/f1.ts (Open)
|
||||
|
||||
+7
@@ -237,6 +237,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /a/b/tsconfig.json
|
||||
@@ -364,3 +365,9 @@ Info seq [hh:mm:ss:mss] event:
|
||||
}
|
||||
}
|
||||
After running Timeout callback:: count: 0
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+2
@@ -224,6 +224,7 @@ Projects::
|
||||
/users/username/projects/project/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Before running Timeout callback:: count: 2
|
||||
2: /users/username/projects/project/tsconfig.json
|
||||
@@ -305,6 +306,7 @@ Projects::
|
||||
/users/username/projects/project/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -215,6 +215,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
@@ -268,6 +269,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+2
@@ -215,6 +215,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
@@ -268,6 +269,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+4
@@ -349,6 +349,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
@@ -458,9 +459,12 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+4
@@ -349,6 +349,7 @@ Projects::
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
{
|
||||
@@ -517,9 +518,12 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
/user/username/projects/myproject/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts
|
||||
|
||||
+7
-5
@@ -247,7 +247,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
Configured project: /a/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -289,6 +288,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/app.js *changed*
|
||||
@@ -305,10 +306,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
Configured project: /a/tsconfig.json hasOpenRef:: false isClosed: false
|
||||
Containing projects for /a/app.js:: /a/tsconfig.json
|
||||
Containing projects for /a/largefile.js:: /a/tsconfig.json
|
||||
Containing projects for /a/lib.js:: /a/tsconfig.json
|
||||
Before request
|
||||
//// [/aa.js]
|
||||
var x = 1
|
||||
@@ -343,6 +340,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
@@ -528,6 +527,9 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
|
||||
+4
@@ -248,6 +248,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/commonFile1.ts (Open)
|
||||
@@ -306,6 +307,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /a/b/tsconfig.json
|
||||
@@ -326,6 +328,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 2
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /a/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info
|
||||
@@ -392,6 +395,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 3 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/commonFile1.ts (Open)
|
||||
|
||||
+4
-3
@@ -274,6 +274,7 @@ Projects::
|
||||
/user/username/projects/myproject/a/c/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
dirty: true
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/a/c/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Loading configured project /user/username/projects/myproject/a/c/tsconfig.json
|
||||
@@ -547,12 +548,15 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/user/username/projects/myproject/a/c/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
dirty: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/b/f1.ts (Open) *changed*
|
||||
@@ -569,6 +573,3 @@ ScriptInfos::
|
||||
containingProjects: 1 *changed*
|
||||
/user/username/projects/myproject/a/c/tsconfig.json *default* *new*
|
||||
/dev/null/inferredProject2* *deleted*
|
||||
|
||||
Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject2* isOrphan:: true isClosed: false
|
||||
+1
@@ -181,6 +181,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+1
@@ -166,6 +166,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+12
@@ -264,6 +264,12 @@ FsWatches::
|
||||
/a/b/tsconfig.json:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/main.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -316,6 +322,12 @@ FsWatches *deleted*::
|
||||
/a/b/obj-a.ts:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/main.ts
|
||||
version: SVC-1-0
|
||||
|
||||
+9
-2
@@ -229,7 +229,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/b/tsconfig.json *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -263,6 +262,12 @@ FsWatches::
|
||||
/a/b/tsconfig.json:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/main.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -270,7 +275,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/b/tsconfig.json
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: false isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -301,6 +305,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 0
|
||||
@@ -471,6 +476,8 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1 *changed*
|
||||
|
||||
+4
-2
@@ -365,6 +365,7 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/dev/null/inferredProject1* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -560,9 +561,11 @@ Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 2 *changed*
|
||||
dirty: false *changed*
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 2 *changed*
|
||||
isOrphan: true *changed*
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -583,8 +586,6 @@ ScriptInfos::
|
||||
/a/b/tsconfig.json *default* *new*
|
||||
/dev/null/inferredProject1* *deleted*
|
||||
|
||||
Inferred project: /dev/null/inferredProject1* isOrphan:: true isClosed: false
|
||||
Inferred project: /dev/null/inferredProject2* isOrphan:: false isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -644,6 +645,7 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 3 *changed*
|
||||
isOrphan: false *changed*
|
||||
/dev/null/inferredProject2* (Inferred)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+12
-4
@@ -243,7 +243,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/b/tsconfig.json
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -279,6 +278,12 @@ FsWatches::
|
||||
/a/b/tsconfig.json:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/main.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -290,7 +295,6 @@ ScriptInfos::
|
||||
containingProjects: 1
|
||||
/a/b/tsconfig.json
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: false isClosed: false
|
||||
Before request
|
||||
|
||||
Info seq [hh:mm:ss:mss] request:
|
||||
@@ -332,6 +336,12 @@ FsWatches *deleted*::
|
||||
/a/b/main2.ts:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/b/main.ts
|
||||
version: SVC-1-0
|
||||
@@ -342,5 +352,3 @@ ScriptInfos::
|
||||
version: Text-1
|
||||
containingProjects: 1
|
||||
/a/b/tsconfig.json *default*
|
||||
|
||||
Configured project: /a/b/tsconfig.json hasOpenRef:: true isClosed: false
|
||||
+52
-2
@@ -760,6 +760,18 @@ FsWatchesRecursive::
|
||||
/user/username/projects/myproject/dummy:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts (Open)
|
||||
version: SVC-1-0
|
||||
@@ -842,6 +854,19 @@ FsWatchesRecursive::
|
||||
/user/username/projects/myproject/dummy:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts (Open)
|
||||
version: SVC-1-0
|
||||
@@ -955,9 +980,12 @@ Projects::
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured)
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts (Open)
|
||||
@@ -1029,6 +1057,15 @@ FsWatchesRecursive::
|
||||
/user/username/projects/myproject/dummy:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -1095,6 +1132,16 @@ FsWatchesRecursive::
|
||||
/user/username/projects/myproject/dummy:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts
|
||||
version: SVC-1-0
|
||||
@@ -1189,9 +1236,12 @@ Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured)
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/user/username/projects/myproject/dummy/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: false *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/user/username/projects/myproject/a/a.ts *deleted*
|
||||
|
||||
+1
@@ -221,6 +221,7 @@ Projects::
|
||||
/user/username/projects/myproject/src/server/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/a/lib/lib.d.ts *new*
|
||||
|
||||
+44
@@ -473,9 +473,11 @@ Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/a/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /user/username/projects/myproject/a/tsconfig.json
|
||||
@@ -729,6 +731,16 @@ Info seq [hh:mm:ss:mss] event:
|
||||
}
|
||||
After running Timeout callback:: count: 0
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*
|
||||
@@ -756,6 +768,7 @@ Projects::
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /user/username/projects/myproject/b/tsconfig.json
|
||||
@@ -895,6 +908,15 @@ Info seq [hh:mm:ss:mss] event:
|
||||
}
|
||||
After running Timeout callback:: count: 0
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Scheduled: *ensureProjectForOpenFiles*
|
||||
@@ -919,6 +941,7 @@ Projects::
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/b/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /user/username/projects/myproject/b/tsconfig.json
|
||||
@@ -1099,6 +1122,15 @@ FsWatchesRecursive::
|
||||
/user/username/projects/myproject/b: *new*
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 4
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/a/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Scheduled: /user/username/projects/myproject/b/tsconfig.json
|
||||
@@ -1121,9 +1153,11 @@ Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 5 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
|
||||
Info seq [hh:mm:ss:mss] Running: /user/username/projects/myproject/a/tsconfig.json
|
||||
Info seq [hh:mm:ss:mss] Reloading configured project /user/username/projects/myproject/a/tsconfig.json
|
||||
@@ -1354,3 +1388,13 @@ Info seq [hh:mm:ss:mss] event:
|
||||
}
|
||||
}
|
||||
After running Timeout callback:: count: 0
|
||||
|
||||
Projects::
|
||||
/user/username/projects/myproject/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 3
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
/user/username/projects/myproject/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 5
|
||||
projectProgramVersion: 1
|
||||
dirty: false *changed*
|
||||
|
||||
+5
@@ -349,6 +349,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/bin/a.d.ts
|
||||
@@ -457,6 +459,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+24
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -1117,6 +1136,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
@@ -1234,6 +1255,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
|
||||
+24
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -895,6 +914,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/bin/a.d.ts
|
||||
@@ -991,6 +1012,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -902,6 +921,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -982,9 +1002,12 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
@@ -1110,9 +1133,14 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
|
||||
+8
@@ -290,6 +290,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -513,6 +519,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -632,6 +639,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -936,6 +955,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -1016,9 +1036,12 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
@@ -1144,9 +1167,14 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
|
||||
+54
@@ -340,6 +340,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -566,6 +572,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -633,6 +641,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -673,6 +687,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -904,6 +920,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -1021,6 +1039,17 @@ FsWatchesRecursive::
|
||||
/user:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
version: Text-2
|
||||
@@ -1191,9 +1220,12 @@ Projects::
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts (Open) *changed*
|
||||
@@ -1262,6 +1294,21 @@ FsWatchesRecursive::
|
||||
/user:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -1387,15 +1434,22 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
/user/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *deleted*
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -894,6 +913,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -996,6 +1017,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -886,6 +905,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -994,6 +1015,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+24
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -874,6 +893,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/bin/a.d.ts
|
||||
@@ -970,6 +991,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -882,6 +901,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -984,6 +1005,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -882,6 +901,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -984,6 +1005,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -882,6 +901,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -984,6 +1005,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -902,6 +921,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts
|
||||
@@ -1010,6 +1031,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+15
@@ -340,6 +340,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -566,6 +572,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -633,6 +641,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -871,6 +885,7 @@ Projects::
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+15
@@ -340,6 +340,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -566,6 +572,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -633,6 +641,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -871,6 +885,7 @@ Projects::
|
||||
/b/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/user/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
+24
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -1129,6 +1148,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
@@ -1246,6 +1267,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
|
||||
+24
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -912,6 +931,8 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/bin/a.d.ts
|
||||
@@ -1008,6 +1029,9 @@ Projects::
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
|
||||
@@ -325,6 +325,12 @@ FsWatchesRecursive::
|
||||
/a:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/a/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/a/a.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -551,6 +557,8 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/b/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -618,6 +626,12 @@ FsWatchesRecursive::
|
||||
/b:
|
||||
{}
|
||||
|
||||
Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true *changed*
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *changed*
|
||||
open: false *changed*
|
||||
@@ -658,6 +672,8 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
noOpenRef: true
|
||||
|
||||
ScriptInfos::
|
||||
/b/b.ts *deleted*
|
||||
@@ -745,6 +761,9 @@ Projects::
|
||||
/b/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -916,6 +935,7 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *new*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
@@ -996,9 +1016,12 @@ Projects::
|
||||
/a/tsconfig.json (Configured)
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *changed*
|
||||
projectStateVersion: 2 *changed*
|
||||
projectProgramVersion: 1
|
||||
dirty: true *changed*
|
||||
isOrphan: true *changed*
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
|
||||
@@ -1124,9 +1147,14 @@ Projects::
|
||||
/a/tsconfig.json (Configured) *deleted*
|
||||
projectStateVersion: 1
|
||||
projectProgramVersion: 1
|
||||
isClosed: true *changed*
|
||||
noOpenRef: true
|
||||
/dev/null/inferredProject1* (Inferred) *deleted*
|
||||
projectStateVersion: 2
|
||||
projectProgramVersion: 1
|
||||
dirty: true
|
||||
isClosed: true *changed*
|
||||
isOrphan: true
|
||||
originalConfiguredProjects: 1
|
||||
/a/tsconfig.json
|
||||
/dev/null/inferredProject2* (Inferred) *new*
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user