mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Fixes to handle file names in module resolution watching and createGetCanonicalFileName (#36106)
* Add test case to verify directory casing preservation when watching * Fix unicode file name handling when watching failed lookup locations * Add special file name lower conversion routine and use that instead of toLowerCase Fixes #31819 and #35559 * Remove unicode from code * Replace toLocaleLowerCase on filenames with ts.toFileNameLowerCase * Make the intent of using toFileNameLowerCase more clear and why we make the restriction on turkish I with dot on top of it * Update baselines for newly added tests in master
This commit is contained in:
@@ -2618,7 +2618,7 @@ namespace ts {
|
||||
errors: Push<Diagnostic>,
|
||||
extendedConfigCache?: Map<ExtendedConfigCacheEntry>
|
||||
): ParsedTsconfig | undefined {
|
||||
const path = host.useCaseSensitiveFileNames ? extendedConfigPath : toLowerCase(extendedConfigPath);
|
||||
const path = host.useCaseSensitiveFileNames ? extendedConfigPath : toFileNameLowerCase(extendedConfigPath);
|
||||
let value: ExtendedConfigCacheEntry | undefined;
|
||||
let extendedResult: TsConfigSourceFile;
|
||||
let extendedConfig: ParsedTsconfig | undefined;
|
||||
@@ -2922,7 +2922,7 @@ namespace ts {
|
||||
export function getFileNamesFromConfigSpecs(spec: ConfigFileSpecs, basePath: string, options: CompilerOptions, host: ParseConfigHost, extraFileExtensions: readonly FileExtensionInfo[] = []): ExpandResult {
|
||||
basePath = normalizePath(basePath);
|
||||
|
||||
const keyMapper = host.useCaseSensitiveFileNames ? identity : toLowerCase;
|
||||
const keyMapper = createGetCanonicalFileName(host.useCaseSensitiveFileNames);
|
||||
|
||||
// Literal file names (provided via the "files" array in tsconfig.json) are stored in a
|
||||
// file map with a possibly case insensitive key. We use this map later when when including
|
||||
@@ -3091,7 +3091,7 @@ namespace ts {
|
||||
const match = wildcardDirectoryPattern.exec(spec);
|
||||
if (match) {
|
||||
return {
|
||||
key: useCaseSensitiveFileNames ? match[0] : match[0].toLowerCase(),
|
||||
key: useCaseSensitiveFileNames ? match[0] : toFileNameLowerCase(match[0]),
|
||||
flags: watchRecursivePattern.test(spec) ? WatchDirectoryFlags.Recursive : WatchDirectoryFlags.None
|
||||
};
|
||||
}
|
||||
|
||||
+41
-1
@@ -1404,6 +1404,46 @@ namespace ts {
|
||||
/** Returns lower case string */
|
||||
export function toLowerCase(x: string) { return x.toLowerCase(); }
|
||||
|
||||
// We convert the file names to lower case as key for file name on case insensitive file system
|
||||
// While doing so we need to handle special characters (eg \u0130) to ensure that we dont convert
|
||||
// it to lower case, fileName with its lowercase form can exist along side it.
|
||||
// Handle special characters and make those case sensitive instead
|
||||
//
|
||||
// |-#--|-Unicode--|-Char code-|-Desc-------------------------------------------------------------------|
|
||||
// | 1. | i | 105 | Ascii i |
|
||||
// | 2. | I | 73 | Ascii I |
|
||||
// |-------- Special characters ------------------------------------------------------------------------|
|
||||
// | 3. | \u0130 | 304 | Uppper case I with dot above |
|
||||
// | 4. | i,\u0307 | 105,775 | i, followed by 775: Lower case of (3rd item) |
|
||||
// | 5. | I,\u0307 | 73,775 | I, followed by 775: Upper case of (4th item), lower case is (4th item) |
|
||||
// | 6. | \u0131 | 305 | Lower case i without dot, upper case is I (2nd item) |
|
||||
// | 7. | \u00DF | 223 | Lower case sharp s |
|
||||
//
|
||||
// Because item 3 is special where in its lowercase character has its own
|
||||
// upper case form we cant convert its case.
|
||||
// Rest special characters are either already in lower case format or
|
||||
// they have corresponding upper case character so they dont need special handling
|
||||
//
|
||||
// But to avoid having to do string building for most common cases, also ignore
|
||||
// a-z, 0-9, \u0131, \u00DF, \, /, ., : and space
|
||||
const fileNameLowerCaseRegExp = /[^\u0130\u0131\u00DFa-z0-9\\/:\-_\. ]+/g;
|
||||
/**
|
||||
* Case insensitive file systems have descripencies in how they handle some characters (eg. turkish Upper case I with dot on top - \u0130)
|
||||
* This function is used in places where we want to make file name as a key on these systems
|
||||
* It is possible on mac to be able to refer to file name with I with dot on top as a fileName with its lower case form
|
||||
* But on windows we cannot. Windows can have fileName with I with dot on top next to its lower case and they can not each be referred with the lowercase forms
|
||||
* Technically we would want this function to be platform sepcific as well but
|
||||
* our api has till now only taken caseSensitive as the only input and just for some characters we dont want to update API and ensure all customers use those api
|
||||
* We could use upper case and we would still need to deal with the descripencies but
|
||||
* we want to continue using lower case since in most cases filenames are lowercasewe and wont need any case changes and avoid having to store another string for the key
|
||||
* So for this function purpose, we go ahead and assume character I with dot on top it as case sensitive since its very unlikely to use lower case form of that special character
|
||||
*/
|
||||
export function toFileNameLowerCase(x: string) {
|
||||
return fileNameLowerCaseRegExp.test(x) ?
|
||||
x.replace(fileNameLowerCaseRegExp, toLowerCase) :
|
||||
x;
|
||||
}
|
||||
|
||||
/** Throws an error because a function is not implemented. */
|
||||
export function notImplemented(): never {
|
||||
throw new Error("Not implemented");
|
||||
@@ -1865,7 +1905,7 @@ namespace ts {
|
||||
|
||||
export type GetCanonicalFileName = (fileName: string) => string;
|
||||
export function createGetCanonicalFileName(useCaseSensitiveFileNames: boolean): GetCanonicalFileName {
|
||||
return useCaseSensitiveFileNames ? identity : toLowerCase;
|
||||
return useCaseSensitiveFileNames ? identity : toFileNameLowerCase;
|
||||
}
|
||||
|
||||
/** Represents a "prefix*suffix" pattern. */
|
||||
|
||||
@@ -1397,7 +1397,7 @@ namespace ts {
|
||||
}
|
||||
if (resolveTypeReferenceDirectiveNamesWorker) {
|
||||
// We lower-case all type references because npm automatically lowercases all packages. See GH#9824.
|
||||
const typesReferenceDirectives = map(newSourceFile.typeReferenceDirectives, ref => ref.fileName.toLocaleLowerCase());
|
||||
const typesReferenceDirectives = map(newSourceFile.typeReferenceDirectives, ref => toFileNameLowerCase(ref.fileName));
|
||||
const resolutions = resolveTypeReferenceDirectiveNamesWorker(typesReferenceDirectives, newSourceFilePath, getResolvedProjectReferenceToRedirect(newSourceFile.originalFileName));
|
||||
// ensure that types resolutions are still correct
|
||||
const resolutionsChanged = hasChangesInResolutions(typesReferenceDirectives, resolutions, oldSourceFile.resolvedTypeReferenceDirectiveNames, typeDirectiveIsEqualTo);
|
||||
@@ -2190,7 +2190,7 @@ namespace ts {
|
||||
}
|
||||
|
||||
function getLibFileFromReference(ref: FileReference) {
|
||||
const libName = ref.fileName.toLocaleLowerCase();
|
||||
const libName = toFileNameLowerCase(ref.fileName);
|
||||
const libFileName = libMap.get(libName);
|
||||
if (libFileName) {
|
||||
return getSourceFile(combinePaths(defaultLibraryPath, libFileName));
|
||||
@@ -2438,7 +2438,7 @@ namespace ts {
|
||||
addFileToRefFileMap(fileName, file, refFile);
|
||||
|
||||
if (host.useCaseSensitiveFileNames()) {
|
||||
const pathLowerCase = path.toLowerCase();
|
||||
const pathLowerCase = toFileNameLowerCase(path);
|
||||
// for case-sensitive file systems check if we've already seen some file with similar filename ignoring case
|
||||
const existingFile = filesByNameIgnoreCase!.get(pathLowerCase);
|
||||
if (existingFile) {
|
||||
@@ -2650,7 +2650,7 @@ namespace ts {
|
||||
|
||||
function processTypeReferenceDirectives(file: SourceFile) {
|
||||
// We lower-case all type references because npm automatically lowercases all packages. See GH#9824.
|
||||
const typeDirectives = map(file.typeReferenceDirectives, ref => ref.fileName.toLocaleLowerCase());
|
||||
const typeDirectives = map(file.typeReferenceDirectives, ref => toFileNameLowerCase(ref.fileName));
|
||||
if (!typeDirectives) {
|
||||
return;
|
||||
}
|
||||
@@ -2661,7 +2661,7 @@ namespace ts {
|
||||
const ref = file.typeReferenceDirectives[i];
|
||||
const resolvedTypeReferenceDirective = resolutions[i];
|
||||
// store resolved type directive on the file
|
||||
const fileName = ref.fileName.toLocaleLowerCase();
|
||||
const fileName = toFileNameLowerCase(ref.fileName);
|
||||
setResolvedTypeReferenceDirective(file, fileName, resolvedTypeReferenceDirective);
|
||||
processTypeReferenceDirective(
|
||||
fileName,
|
||||
@@ -2753,7 +2753,7 @@ namespace ts {
|
||||
|
||||
function processLibReferenceDirectives(file: SourceFile) {
|
||||
forEach(file.libReferenceDirectives, libReference => {
|
||||
const libName = libReference.fileName.toLocaleLowerCase();
|
||||
const libName = toFileNameLowerCase(libReference.fileName);
|
||||
const libFileName = libMap.get(libName);
|
||||
if (libFileName) {
|
||||
// we ignore any 'no-default-lib' reference set on this file.
|
||||
@@ -3200,7 +3200,7 @@ namespace ts {
|
||||
blockEmittingOfFile(emitFileName, createCompilerDiagnosticFromMessageChain(chain));
|
||||
}
|
||||
|
||||
const emitFileKey = !host.useCaseSensitiveFileNames() ? emitFilePath.toLocaleLowerCase() : emitFilePath;
|
||||
const emitFileKey = !host.useCaseSensitiveFileNames() ? toFileNameLowerCase(emitFilePath) : emitFilePath;
|
||||
// Report error if multiple files write into same file
|
||||
if (emitFilesSeen.has(emitFileKey)) {
|
||||
// Already seen the same emit file - report error
|
||||
|
||||
@@ -176,6 +176,7 @@ namespace ts {
|
||||
const directoryWatchesOfFailedLookups = createMap<DirectoryWatchesOfFailedLookup>();
|
||||
const rootDir = rootDirForResolution && removeTrailingDirectorySeparator(getNormalizedAbsolutePath(rootDirForResolution, getCurrentDirectory()));
|
||||
const rootPath = (rootDir && resolutionHost.toPath(rootDir)) as Path; // TODO: GH#18217
|
||||
const rootSplitLength = rootPath !== undefined ? rootPath.split(directorySeparator).length : 0;
|
||||
|
||||
// TypeRoot watches for the types that get added as part of getAutomaticTypeDirectiveNames
|
||||
const typeRootsWatches = createMap<FileWatcher>();
|
||||
@@ -439,15 +440,23 @@ namespace ts {
|
||||
if (isInDirectoryPath(rootPath, failedLookupLocationPath)) {
|
||||
// Ensure failed look up is normalized path
|
||||
failedLookupLocation = isRootedDiskPath(failedLookupLocation) ? normalizePath(failedLookupLocation) : getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory());
|
||||
Debug.assert(failedLookupLocation.length === failedLookupLocationPath.length, `FailedLookup: ${failedLookupLocation} failedLookupLocationPath: ${failedLookupLocationPath}`);
|
||||
const subDirectoryInRoot = failedLookupLocationPath.indexOf(directorySeparator, rootPath.length + 1);
|
||||
if (subDirectoryInRoot !== -1) {
|
||||
const failedLookupPathSplit = failedLookupLocationPath.split(directorySeparator);
|
||||
const failedLookupSplit = failedLookupLocation.split(directorySeparator);
|
||||
Debug.assert(failedLookupSplit.length === failedLookupPathSplit.length, `FailedLookup: ${failedLookupLocation} failedLookupLocationPath: ${failedLookupLocationPath}`);
|
||||
if (failedLookupPathSplit.length > rootSplitLength + 1) {
|
||||
// Instead of watching root, watch directory in root to avoid watching excluded directories not needed for module resolution
|
||||
return { dir: failedLookupLocation.substr(0, subDirectoryInRoot), dirPath: failedLookupLocationPath.substr(0, subDirectoryInRoot) as Path };
|
||||
return {
|
||||
dir: failedLookupSplit.slice(0, rootSplitLength + 1).join(directorySeparator),
|
||||
dirPath: failedLookupPathSplit.slice(0, rootSplitLength + 1).join(directorySeparator) as Path
|
||||
};
|
||||
}
|
||||
else {
|
||||
// Always watch root directory non recursively
|
||||
return { dir: rootDir!, dirPath: rootPath, nonRecursive: false }; // TODO: GH#18217
|
||||
return {
|
||||
dir: rootDir!,
|
||||
dirPath: rootPath,
|
||||
nonRecursive: false
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -401,7 +401,7 @@ namespace ts {
|
||||
forEach(sourceFile.libReferenceDirectives, ref => {
|
||||
const lib = host.getLibFileFromReference(ref);
|
||||
if (lib) {
|
||||
ret.set(ref.fileName.toLocaleLowerCase(), true);
|
||||
ret.set(toFileNameLowerCase(ref.fileName), true);
|
||||
}
|
||||
});
|
||||
return ret;
|
||||
|
||||
@@ -199,17 +199,21 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
checkMap(`watchedFiles:: ${additionalInfo || ""}::`, host.watchedFiles, expectedFiles, /*eachKeyCount*/ undefined);
|
||||
}
|
||||
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: ReadonlyMap<number>, expectedPollingIntervals?: Map<PollingInterval[]>): void;
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: readonly string[], eachFileWatchCount: number, expectedPollingIntervals?: Map<PollingInterval[]>): void;
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: ReadonlyMap<number> | readonly string[], eachFileWatchCount?: number | Map<PollingInterval[]>, expectedPollingIntervals?: Map<PollingInterval[]>) {
|
||||
if (!isNumber(eachFileWatchCount)) expectedPollingIntervals = eachFileWatchCount;
|
||||
export interface WatchFileDetails {
|
||||
fileName: string;
|
||||
pollingInterval: PollingInterval;
|
||||
}
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: ReadonlyMap<number>, expectedDetails?: Map<WatchFileDetails[]>): void;
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: readonly string[], eachFileWatchCount: number, expectedDetails?: Map<WatchFileDetails[]>): void;
|
||||
export function checkWatchedFilesDetailed(host: TestServerHost, expectedFiles: ReadonlyMap<number> | readonly string[], eachFileWatchCountOrExpectedDetails?: number | Map<WatchFileDetails[]>, expectedDetails?: Map<WatchFileDetails[]>) {
|
||||
if (!isNumber(eachFileWatchCountOrExpectedDetails)) expectedDetails = eachFileWatchCountOrExpectedDetails;
|
||||
if (isArray(expectedFiles)) {
|
||||
checkMap(
|
||||
"watchedFiles",
|
||||
host.watchedFiles,
|
||||
expectedFiles,
|
||||
eachFileWatchCount as number,
|
||||
[expectedPollingIntervals, ({ pollingInterval }) => pollingInterval]
|
||||
eachFileWatchCountOrExpectedDetails as number,
|
||||
[expectedDetails, ({ fileName, pollingInterval }) => ({ fileName, pollingInterval })]
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -217,7 +221,7 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
"watchedFiles",
|
||||
host.watchedFiles,
|
||||
expectedFiles,
|
||||
[expectedPollingIntervals, ({ pollingInterval }) => pollingInterval]
|
||||
[expectedDetails, ({ fileName, pollingInterval }) => ({ fileName, pollingInterval })]
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -226,30 +230,31 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
checkMap(`watchedDirectories${recursive ? " recursive" : ""}`, recursive ? host.fsWatchesRecursive : host.fsWatches, expectedDirectories, /*eachKeyCount*/ undefined);
|
||||
}
|
||||
|
||||
export interface FallbackPollingOptions {
|
||||
export interface WatchDirectoryDetails {
|
||||
directoryName: string;
|
||||
fallbackPollingInterval: PollingInterval;
|
||||
fallbackOptions: WatchOptions | undefined;
|
||||
}
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: ReadonlyMap<number>, recursive: boolean, expectedFallbacks?: Map<FallbackPollingOptions[]>): void;
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: readonly string[], eachDirectoryWatchCount: number, recursive: boolean, expectedFallbacks?: Map<FallbackPollingOptions[]>): void;
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: ReadonlyMap<number> | readonly string[], recursiveOrEachDirectoryWatchCount: boolean | number, recursiveOrExpectedFallbacks?: boolean | Map<FallbackPollingOptions[]>, expectedFallbacks?: Map<FallbackPollingOptions[]>) {
|
||||
if (typeof recursiveOrExpectedFallbacks !== "boolean") expectedFallbacks = recursiveOrExpectedFallbacks;
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: ReadonlyMap<number>, recursive: boolean, expectedDetails?: Map<WatchDirectoryDetails[]>): void;
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: readonly string[], eachDirectoryWatchCount: number, recursive: boolean, expectedDetails?: Map<WatchDirectoryDetails[]>): void;
|
||||
export function checkWatchedDirectoriesDetailed(host: TestServerHost, expectedDirectories: ReadonlyMap<number> | readonly string[], recursiveOrEachDirectoryWatchCount: boolean | number, recursiveOrExpectedDetails?: boolean | Map<WatchDirectoryDetails[]>, expectedDetails?: Map<WatchDirectoryDetails[]>) {
|
||||
if (typeof recursiveOrExpectedDetails !== "boolean") expectedDetails = recursiveOrExpectedDetails;
|
||||
if (isArray(expectedDirectories)) {
|
||||
checkMap(
|
||||
`fsWatches${recursiveOrExpectedFallbacks ? " recursive" : ""}`,
|
||||
recursiveOrExpectedFallbacks as boolean ? host.fsWatchesRecursive : host.fsWatches,
|
||||
`fsWatches${recursiveOrExpectedDetails ? " recursive" : ""}`,
|
||||
recursiveOrExpectedDetails as boolean ? host.fsWatchesRecursive : host.fsWatches,
|
||||
expectedDirectories,
|
||||
recursiveOrEachDirectoryWatchCount as number,
|
||||
[expectedFallbacks, ({ fallbackPollingInterval, fallbackOptions }) => ({ fallbackPollingInterval, fallbackOptions })]
|
||||
[expectedDetails, ({ directoryName, fallbackPollingInterval, fallbackOptions }) => ({ directoryName, fallbackPollingInterval, fallbackOptions })]
|
||||
);
|
||||
}
|
||||
else {
|
||||
recursiveOrExpectedFallbacks = recursiveOrEachDirectoryWatchCount as boolean;
|
||||
recursiveOrExpectedDetails = recursiveOrEachDirectoryWatchCount as boolean;
|
||||
checkMap(
|
||||
`fsWatches{recursive ? " recursive" : ""}`,
|
||||
recursiveOrExpectedFallbacks ? host.fsWatchesRecursive : host.fsWatches,
|
||||
recursiveOrExpectedDetails ? host.fsWatchesRecursive : host.fsWatches,
|
||||
expectedDirectories,
|
||||
[expectedFallbacks, ({ fallbackPollingInterval, fallbackOptions }) => ({ fallbackPollingInterval, fallbackOptions })]
|
||||
[expectedDetails, ({ directoryName, fallbackPollingInterval, fallbackOptions }) => ({ directoryName, fallbackPollingInterval, fallbackOptions })]
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -330,6 +335,7 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
|
||||
export interface TestFsWatcher {
|
||||
cb: FsWatchCallback;
|
||||
directoryName: string;
|
||||
fallbackPollingInterval: PollingInterval;
|
||||
fallbackOptions: WatchOptions | undefined;
|
||||
}
|
||||
@@ -740,7 +746,12 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
createWatcher(
|
||||
recursive ? this.fsWatchesRecursive : this.fsWatches,
|
||||
this.toFullPath(fileOrDirectory),
|
||||
{ cb, fallbackPollingInterval, fallbackOptions }
|
||||
{
|
||||
directoryName: fileOrDirectory,
|
||||
cb,
|
||||
fallbackPollingInterval,
|
||||
fallbackOptions
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1068,7 +1079,7 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
}
|
||||
|
||||
serializeWatches(baseline: string[]) {
|
||||
serializeMultiMap(baseline, "WatchedFiles", this.watchedFiles, ({ pollingInterval }) => ({ pollingInterval }));
|
||||
serializeMultiMap(baseline, "WatchedFiles", this.watchedFiles, ({ fileName, pollingInterval }) => ({ fileName, pollingInterval }));
|
||||
baseline.push("");
|
||||
serializeMultiMap(baseline, "FsWatches", this.fsWatches, serializeTestFsWatcher);
|
||||
baseline.push("");
|
||||
@@ -1171,8 +1182,9 @@ interface Array<T> { length: number; [n: number]: T; }`
|
||||
}
|
||||
}
|
||||
|
||||
function serializeTestFsWatcher({ fallbackPollingInterval, fallbackOptions }: TestFsWatcher) {
|
||||
function serializeTestFsWatcher({ directoryName, fallbackPollingInterval, fallbackOptions }: TestFsWatcher) {
|
||||
return {
|
||||
directoryName,
|
||||
fallbackPollingInterval,
|
||||
fallbackOptions: serializeWatchOptions(fallbackOptions)
|
||||
};
|
||||
|
||||
@@ -1256,7 +1256,20 @@ namespace ts.server {
|
||||
|
||||
const project = this.getOrCreateInferredProjectForProjectRootPathIfEnabled(info, projectRootPath) ||
|
||||
this.getOrCreateSingleInferredProjectIfEnabled() ||
|
||||
this.getOrCreateSingleInferredWithoutProjectRoot(info.isDynamic ? projectRootPath || this.currentDirectory : getDirectoryPath(info.path));
|
||||
this.getOrCreateSingleInferredWithoutProjectRoot(
|
||||
info.isDynamic ?
|
||||
projectRootPath || this.currentDirectory :
|
||||
getDirectoryPath(
|
||||
isRootedDiskPath(info.fileName) ?
|
||||
info.fileName :
|
||||
getNormalizedAbsolutePath(
|
||||
info.fileName,
|
||||
projectRootPath ?
|
||||
this.getNormalizedAbsolutePath(projectRootPath) :
|
||||
this.currentDirectory
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
project.addRoot(info);
|
||||
if (info.containingProjects[0] !== project) {
|
||||
@@ -3354,7 +3367,7 @@ namespace ts.server {
|
||||
else {
|
||||
let exclude = false;
|
||||
if (typeAcquisition.enable || typeAcquisition.enableAutoDiscovery) {
|
||||
const baseName = getBaseFileName(normalizedNames[i].toLowerCase());
|
||||
const baseName = getBaseFileName(toFileNameLowerCase(normalizedNames[i]));
|
||||
if (fileExtensionIs(baseName, "js")) {
|
||||
const inferredTypingName = removeFileExtension(baseName);
|
||||
const cleanedTypingName = removeMinAndVersionNumbers(inferredTypingName);
|
||||
|
||||
@@ -2230,7 +2230,7 @@ namespace ts.server {
|
||||
}
|
||||
|
||||
getCanonicalFileName(fileName: string) {
|
||||
const name = this.host.useCaseSensitiveFileNames ? fileName : fileName.toLowerCase();
|
||||
const name = this.host.useCaseSensitiveFileNames ? fileName : toFileNameLowerCase(fileName);
|
||||
return normalizePath(name);
|
||||
}
|
||||
|
||||
|
||||
@@ -922,8 +922,8 @@ namespace ts {
|
||||
() => {
|
||||
const results = this.languageService.getDocumentHighlights(fileName, position, JSON.parse(filesToSearch));
|
||||
// workaround for VS document highlighting issue - keep only items from the initial file
|
||||
const normalizedName = normalizeSlashes(fileName).toLowerCase();
|
||||
return filter(results, r => normalizeSlashes(r.fileName).toLowerCase() === normalizedName);
|
||||
const normalizedName = toFileNameLowerCase(normalizeSlashes(fileName));
|
||||
return filter(results, r => toFileNameLowerCase(normalizeSlashes(r.fileName)) === normalizedName);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1295,4 +1295,4 @@ namespace ts {
|
||||
}
|
||||
}
|
||||
|
||||
/* eslint-enable no-in-operator */
|
||||
/* eslint-enable no-in-operator */
|
||||
|
||||
@@ -289,4 +289,22 @@ describe("unittests:: core paths", () => {
|
||||
assert.strictEqual(ts.getRelativePathFromDirectory("file:///a/b/c", "file:///a/b", /*ignoreCase*/ false), "..");
|
||||
assert.strictEqual(ts.getRelativePathFromDirectory("file:///c:", "file:///d:", /*ignoreCase*/ false), "file:///d:/");
|
||||
});
|
||||
it("toFileNameLowerCase", () => {
|
||||
assert.strictEqual(
|
||||
ts.toFileNameLowerCase("/user/UserName/projects/Project/file.ts"),
|
||||
"/user/username/projects/project/file.ts"
|
||||
);
|
||||
assert.strictEqual(
|
||||
ts.toFileNameLowerCase("/user/UserName/projects/projectß/file.ts"),
|
||||
"/user/username/projects/projectß/file.ts"
|
||||
);
|
||||
assert.strictEqual(
|
||||
ts.toFileNameLowerCase("/user/UserName/projects/İproject/file.ts"),
|
||||
"/user/username/projects/İproject/file.ts"
|
||||
);
|
||||
assert.strictEqual(
|
||||
ts.toFileNameLowerCase("/user/UserName/projects/ı/file.ts"),
|
||||
"/user/username/projects/ı/file.ts"
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -286,6 +286,7 @@ namespace ts.projectSystem {
|
||||
files,
|
||||
f => f.path.toLowerCase(),
|
||||
f => [{
|
||||
directoryName: f.path,
|
||||
fallbackPollingInterval: f === configFile ? PollingInterval.High : PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -299,7 +300,8 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
["/a/b", "/a/b/node_modules/@types"],
|
||||
identity,
|
||||
() => [{
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -337,7 +339,10 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
files,
|
||||
f => f.path.toLowerCase(),
|
||||
() => [PollingInterval.Low]
|
||||
f => [{
|
||||
fileName: f.path,
|
||||
pollingInterval: PollingInterval.Low
|
||||
}]
|
||||
)
|
||||
);
|
||||
checkWatchedDirectoriesDetailed(
|
||||
@@ -348,7 +353,8 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
["/a/b", "/a/b/node_modules/@types"],
|
||||
identity,
|
||||
() => [{
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -380,15 +386,19 @@ namespace ts.projectSystem {
|
||||
files.map(f => f.path).concat(commonFile1.path)
|
||||
);
|
||||
|
||||
const filePaths = files.map(f => f.path.toLowerCase());
|
||||
const filePaths = files.map(f => f.path);
|
||||
const allFilePaths = filePaths.concat(["/a/b", "/a/b/node_modules/@types"]);
|
||||
checkWatchedFilesDetailed(
|
||||
host,
|
||||
filePaths.concat(["/a/b", "/a/b/node_modules/@types"]),
|
||||
allFilePaths.map(toLowerCase),
|
||||
1,
|
||||
arrayToMap(
|
||||
filePaths.concat(["/a/b", "/a/b/node_modules/@types"]),
|
||||
identity,
|
||||
f => [contains(filePaths, f) ? PollingInterval.Low : PollingInterval.Medium]
|
||||
allFilePaths,
|
||||
toLowerCase,
|
||||
fileName => [{
|
||||
fileName,
|
||||
pollingInterval: contains(filePaths, fileName) ? PollingInterval.Low : PollingInterval.Medium
|
||||
}]
|
||||
)
|
||||
);
|
||||
checkWatchedDirectories(host, emptyArray, /*recursive*/ false);
|
||||
@@ -422,7 +432,10 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
[libFile, commonFile2],
|
||||
f => f.path.toLowerCase(),
|
||||
() => [PollingInterval.Low]
|
||||
f => [{
|
||||
fileName: f.path,
|
||||
pollingInterval: PollingInterval.Low
|
||||
}]
|
||||
)
|
||||
);
|
||||
// Config file with the setting with fsWatch
|
||||
@@ -432,9 +445,10 @@ namespace ts.projectSystem {
|
||||
1,
|
||||
/*recursive*/ false,
|
||||
arrayToMap(
|
||||
[configFile.path.toLowerCase()],
|
||||
identity,
|
||||
() => [{
|
||||
[configFile.path],
|
||||
toLowerCase,
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.High,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -448,7 +462,8 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
["/a/b", "/a/b/node_modules/@types"],
|
||||
identity,
|
||||
() => [{
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -482,7 +497,10 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
files,
|
||||
f => f.path.toLowerCase(),
|
||||
() => [PollingInterval.Low]
|
||||
f => [{
|
||||
fileName: f.path,
|
||||
pollingInterval: PollingInterval.Low
|
||||
}]
|
||||
)
|
||||
);
|
||||
checkWatchedDirectoriesDetailed(
|
||||
@@ -493,7 +511,8 @@ namespace ts.projectSystem {
|
||||
arrayToMap(
|
||||
["/a/b", "/a/b/node_modules/@types"],
|
||||
identity,
|
||||
() => [{
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
@@ -529,19 +548,79 @@ namespace ts.projectSystem {
|
||||
files.map(f => f.path).concat(commonFile1.path)
|
||||
);
|
||||
|
||||
const filePaths = files.map(f => f.path.toLowerCase());
|
||||
const filePaths = files.map(f => f.path);
|
||||
const allFilePaths = filePaths.concat(["/a/b", "/a/b/node_modules/@types"]);
|
||||
checkWatchedFilesDetailed(
|
||||
host,
|
||||
filePaths.concat(["/a/b", "/a/b/node_modules/@types"]),
|
||||
allFilePaths.map(toLowerCase),
|
||||
1,
|
||||
arrayToMap(
|
||||
filePaths.concat(["/a/b", "/a/b/node_modules/@types"]),
|
||||
identity,
|
||||
f => [contains(filePaths, f) ? PollingInterval.Low : PollingInterval.Medium]
|
||||
allFilePaths,
|
||||
toLowerCase,
|
||||
fileName => [{
|
||||
fileName,
|
||||
pollingInterval: contains(filePaths, fileName) ? PollingInterval.Low : PollingInterval.Medium
|
||||
}]
|
||||
)
|
||||
);
|
||||
checkWatchedDirectories(host, emptyArray, /*recursive*/ false);
|
||||
checkWatchedDirectories(host, emptyArray, /*recursive*/ true);
|
||||
});
|
||||
});
|
||||
|
||||
describe("unittests:: tsserver:: watchEnvironment:: file names on case insensitive file system", () => {
|
||||
function verifyFileNames(projectRoot: string, projectRootPath: string) {
|
||||
const keyMapper = (str: string) => str.replace(projectRoot, projectRootPath);
|
||||
const file: File = {
|
||||
path: `${projectRoot}/foo.ts`,
|
||||
content: `import { foo } from "bar"`
|
||||
};
|
||||
const host = createServerHost([file, libFile]);
|
||||
const service = createProjectService(host);
|
||||
service.openClientFile(file.path, /*fileContent*/ undefined, /*scriptKind*/ undefined, projectRoot);
|
||||
const expectedWatchFiles = [libFile.path, `${projectRoot}/tsconfig.json`, `${projectRoot}/jsconfig.json`];
|
||||
checkWatchedFilesDetailed(
|
||||
host,
|
||||
expectedWatchFiles.map(keyMapper),
|
||||
1,
|
||||
arrayToMap(
|
||||
expectedWatchFiles,
|
||||
keyMapper,
|
||||
fileName => [{
|
||||
fileName,
|
||||
pollingInterval: PollingInterval.Low
|
||||
}]
|
||||
)
|
||||
);
|
||||
checkWatchedDirectories(host, [], /*recursive*/ false);
|
||||
const expectedWatchedDirectories = [`${projectRoot}/node_modules`, `${projectRoot}/node_modules/@types`];
|
||||
checkWatchedDirectoriesDetailed(
|
||||
host,
|
||||
expectedWatchedDirectories.map(keyMapper),
|
||||
1,
|
||||
/*recursive*/ true,
|
||||
arrayToMap(
|
||||
expectedWatchedDirectories,
|
||||
keyMapper,
|
||||
directoryName => [{
|
||||
directoryName,
|
||||
fallbackPollingInterval: PollingInterval.Medium,
|
||||
fallbackOptions: { watchFile: WatchFileKind.PriorityPollingInterval }
|
||||
}]
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
it("project with ascii file names", () => {
|
||||
verifyFileNames("/User/userName/Projects/I", "/user/username/projects/i");
|
||||
});
|
||||
|
||||
it("project with ascii file names with i", () => {
|
||||
verifyFileNames("/User/userName/Projects/i", "/user/username/projects/i");
|
||||
});
|
||||
|
||||
it("project with unicode file names", () => {
|
||||
verifyFileNames("/User/userName/Projects/İ", "/user/username/projects/İ");
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@@ -792,7 +792,7 @@ namespace ts.server {
|
||||
// //server/location
|
||||
// ^ <- from 0 to this position
|
||||
const firstSlash = path.indexOf(directorySeparator, 2);
|
||||
return firstSlash !== -1 ? path.substring(0, firstSlash).toLowerCase() : path;
|
||||
return firstSlash !== -1 ? toFileNameLowerCase(path.substring(0, firstSlash)) : path;
|
||||
}
|
||||
const rootLength = getRootLength(path);
|
||||
if (rootLength === 0) {
|
||||
@@ -801,7 +801,7 @@ namespace ts.server {
|
||||
}
|
||||
if (path.charCodeAt(1) === CharacterCodes.colon && path.charCodeAt(2) === CharacterCodes.slash) {
|
||||
// rooted path that starts with c:/... - extract drive letter
|
||||
return path.charAt(0).toLowerCase();
|
||||
return toFileNameLowerCase(path.charAt(0));
|
||||
}
|
||||
if (path.charCodeAt(0) === CharacterCodes.slash && path.charCodeAt(1) !== CharacterCodes.slash) {
|
||||
// rooted path that starts with slash - /somename - use key for current drive
|
||||
|
||||
+15
-15
@@ -52,11 +52,11 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -101,11 +101,11 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -141,11 +141,11 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -179,11 +179,11 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -276,11 +276,11 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
@@ -209,33 +209,33 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/demo/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/core/utilities.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/animal.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/dog.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/zoo.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/demo/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/animals:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/animals","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/zoo:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/zoo","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -300,32 +300,32 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/demo/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/core/utilities.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/animal.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/dog.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/zoo.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/demo/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/animals:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/animals","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/zoo:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/zoo","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+24
-24
@@ -170,33 +170,33 @@ error TS6202: Project references may not form a circular graph. Cycle detected:
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/demo/animals/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/animal.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/dog.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/zoo.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/core/utilities.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/demo/animals:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/animals","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/zoo:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/zoo","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -555,32 +555,32 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/demo/animals/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/animal.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/animal.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/dog.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/dog.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/animals/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/animals/index.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/zoo/zoo.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/zoo/zoo.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/demo/core/utilities.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/core/utilities.ts","pollingInterval":250}
|
||||
/user/username/projects/demo/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/demo/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/demo/animals:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/animals","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/zoo:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/zoo","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/demo/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/demo/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+10
-10
@@ -72,19 +72,19 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -147,18 +147,18 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+9
-9
@@ -373,26 +373,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+27
-27
@@ -397,27 +397,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -539,27 +539,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -762,26 +762,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -116,17 +116,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -162,17 +162,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -205,16 +205,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -116,17 +116,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -162,17 +162,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -211,16 +211,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+8
-8
@@ -50,17 +50,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -93,16 +93,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+8
-8
@@ -50,17 +50,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -162,16 +162,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/solution/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewitherror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithError.ts","pollingInterval":250}
|
||||
/user/username/projects/solution/app/filewithouterror.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/solution/app/fileWithoutError.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/solution/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/solution/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+27
-27
@@ -373,27 +373,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -434,27 +434,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -493,26 +493,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+27
-27
@@ -376,27 +376,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -437,27 +437,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -496,26 +496,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+25
-25
@@ -161,23 +161,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -293,27 +293,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -421,26 +421,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -124,21 +124,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/library/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/library/library.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/library:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/library","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -239,21 +239,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/library/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/library/library.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/library:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/library","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -353,20 +353,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/library/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/library/library.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/Library/library.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/app/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/App/app.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/library:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/library","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+30
-30
@@ -201,21 +201,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -299,21 +299,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -435,21 +435,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -529,21 +529,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -651,20 +651,20 @@ Output::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+69
-69
@@ -339,27 +339,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -441,29 +441,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -488,29 +488,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -538,29 +538,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -651,29 +651,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -698,29 +698,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -748,28 +748,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+90
-90
@@ -339,27 +339,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -451,27 +451,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -548,27 +548,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -659,27 +659,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -762,27 +762,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -859,27 +859,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -970,27 +970,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1091,27 +1091,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1188,27 +1188,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1299,26 +1299,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+36
-36
@@ -339,27 +339,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -439,27 +439,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -474,27 +474,27 @@ Output::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -511,26 +511,26 @@ Output::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+69
-69
@@ -373,27 +373,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -482,29 +482,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -529,29 +529,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -579,29 +579,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -699,29 +699,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -746,29 +746,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -796,28 +796,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/newfile.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/newfile.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+90
-90
@@ -373,27 +373,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -491,27 +491,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -588,27 +588,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -699,27 +699,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -808,27 +808,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -905,27 +905,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1016,27 +1016,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1143,27 +1143,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1240,27 +1240,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -1351,26 +1351,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+36
-36
@@ -373,27 +373,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -477,27 +477,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -512,27 +512,27 @@ Output::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -549,26 +549,26 @@ Output::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/sample1/core/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/anothermodule.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/anotherModule.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/core/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/core/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/logic/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/logic/index.ts","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/sample1/tests/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/sample1/tests/index.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/sample1/core:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/core","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/sample1/logic:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/sample1/logic","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -190,25 +190,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/reexport/src/pure/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/session.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/reexport/src/pure:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/pure","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/reexport/src/main:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/main","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -324,25 +324,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/reexport/src/pure/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/session.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/reexport/src/pure:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/pure","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/reexport/src/main:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/main","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -459,24 +459,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/reexport/src/pure/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/pure/session.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/pure/session.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/main/index.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/main/index.ts","pollingInterval":250}
|
||||
/user/username/projects/reexport/src/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/reexport/src/tsconfig.json","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/reexport/src/pure:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/pure","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/reexport/src/main:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/reexport/src/main","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+8
-8
@@ -43,17 +43,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/tsconfig.json","pollingInterval":250}
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -87,16 +87,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/tsconfig.json","pollingInterval":250}
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+8
-8
@@ -43,17 +43,17 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/tsconfig.json","pollingInterval":250}
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -87,16 +87,16 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/tsconfig.json","pollingInterval":250}
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -50,9 +50,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -104,9 +104,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
@@ -54,9 +54,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -108,9 +108,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
@@ -40,9 +40,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -80,9 +80,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
+4
-4
@@ -40,9 +40,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -80,9 +80,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/f.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/f.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
+8
-8
@@ -63,13 +63,13 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/someone/projects/myproject/file3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file3.ts","pollingInterval":250}
|
||||
/user/someone/projects/myproject/file2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file2.ts","pollingInterval":250}
|
||||
/user/someone/projects/myproject/file1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -112,13 +112,13 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/someone/projects/myproject/file3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file3.ts","pollingInterval":250}
|
||||
/user/someone/projects/myproject/file2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file2.ts","pollingInterval":250}
|
||||
/user/someone/projects/myproject/file1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/someone/projects/myproject/file1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
+10
-10
@@ -44,19 +44,19 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/home/username/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/home/username/project/tsconfig.json","pollingInterval":250}
|
||||
/home/username/project/app/file.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/home/username/project/app/file.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/home/username/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/home/username/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/home/username/project/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/home/username/project/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -93,18 +93,18 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/home/username/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/home/username/project/tsconfig.json","pollingInterval":250}
|
||||
/home/username/project/app/file.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/home/username/project/app/file.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/home/username/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/home/username/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/home/username/project/app:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/home/username/project/app","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+4
-4
@@ -43,9 +43,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/app.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -88,9 +88,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/app.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
+4
-4
@@ -43,9 +43,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/app.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
@@ -88,9 +88,9 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/app.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
|
||||
+14
-14
@@ -71,23 +71,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/f1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f1.ts","pollingInterval":250}
|
||||
/a/b/f2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f2.ts","pollingInterval":250}
|
||||
/a/b/f3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f3.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -130,22 +130,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/f1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f1.ts","pollingInterval":250}
|
||||
/a/b/f2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f2.ts","pollingInterval":250}
|
||||
/a/b/f3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/f3.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -91,27 +91,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -150,26 +150,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -102,27 +102,27 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -204,26 +204,26 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+17
-17
@@ -89,27 +89,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -146,24 +146,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+19
-19
@@ -89,27 +89,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -160,28 +160,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
/a/b/file1consumer3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer3.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+54
-54
@@ -89,27 +89,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -151,27 +151,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -210,27 +210,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -271,27 +271,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -341,27 +341,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -408,26 +408,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+27
-27
@@ -89,27 +89,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -148,27 +148,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -212,26 +212,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+15
-15
@@ -68,19 +68,19 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -114,19 +114,19 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -166,18 +166,18 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -52,21 +52,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/referencefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/referenceFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/modulefile2.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -111,21 +111,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/referencefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/referenceFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/modulefile2.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -168,20 +168,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/referencefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/referenceFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -63,21 +63,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/referencefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/referenceFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -110,20 +110,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/referencefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/referenceFile1.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/modulefile1.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -89,27 +89,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -156,26 +156,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+40
-40
@@ -99,29 +99,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -159,29 +159,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -221,29 +221,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -288,28 +288,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/modulefile1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer1consumer1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer1Consumer1.ts","pollingInterval":250}
|
||||
/a/b/file1consumer2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1Consumer2.ts","pollingInterval":250}
|
||||
/a/b/globalfile3.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/globalFile3.ts","pollingInterval":250}
|
||||
/a/b/modulefile2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/moduleFile2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -61,21 +61,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1.ts","pollingInterval":250}
|
||||
/a/b/file2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -117,20 +117,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/tsconfig.json","pollingInterval":250}
|
||||
/a/b/file1.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file1.ts","pollingInterval":250}
|
||||
/a/b/file2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/file2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/b:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -53,21 +53,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -102,20 +102,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -47,21 +47,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -96,20 +96,20 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -47,21 +47,21 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -96,20 +96,20 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/tsconfig.json","pollingInterval":250}
|
||||
/a/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/a.ts","pollingInterval":250}
|
||||
/a/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+7
-7
@@ -68,22 +68,22 @@ No cached semantic diagnostics in the builder::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/tsconfig.json","pollingInterval":250}
|
||||
/a/b/output/anotherdependency/file1.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/output/AnotherDependency/file1.d.ts","pollingInterval":250}
|
||||
/a/b/dependencies/file2.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/dependencies/file2.d.ts","pollingInterval":250}
|
||||
/a/b/project/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/src/main.ts","pollingInterval":250}
|
||||
/a/b/project/src/main2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/src/main2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+7
-7
@@ -76,22 +76,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/b/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/tsconfig.json","pollingInterval":250}
|
||||
/a/b/output/anotherdependency/file1.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/output/AnotherDependency/file1.d.ts","pollingInterval":250}
|
||||
/a/b/dependencies/file2.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/dependencies/file2.d.ts","pollingInterval":250}
|
||||
/a/b/project/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/src/main.ts","pollingInterval":250}
|
||||
/a/b/project/src/main2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/b/project/src/main2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/b/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/b/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -53,21 +53,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/rootfolder/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/tsconfig.json","pollingInterval":250}
|
||||
/a/rootfolder/project/scripts/javascript.js:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/Scripts/Javascript.js","pollingInterval":250}
|
||||
/a/rootfolder/project/scripts/typescript.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/Scripts/TypeScript.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/rootfolder/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/rootFolder/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/rootfolder/project/scripts:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/rootfolder/project/scripts","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -105,20 +105,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/a/rootfolder/project/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/tsconfig.json","pollingInterval":250}
|
||||
/a/rootfolder/project/scripts/javascript.js:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/Scripts/Javascript.js","pollingInterval":250}
|
||||
/a/rootfolder/project/scripts/typescript.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/rootFolder/project/Scripts/TypeScript.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/a/rootfolder/project/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/rootFolder/project/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/a/rootfolder/project/scripts:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/a/rootfolder/project/scripts","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -93,23 +93,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -158,22 +158,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -68,25 +68,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -122,24 +122,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -123,27 +123,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -192,26 +192,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -153,29 +153,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -216,28 +216,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -134,27 +134,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -194,26 +194,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -60,23 +60,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -130,22 +130,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -110,23 +110,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -182,22 +182,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -72,25 +72,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -126,24 +126,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -153,27 +153,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -234,26 +234,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -193,29 +193,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -263,28 +263,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -165,27 +165,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -232,26 +232,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -60,23 +60,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -144,22 +144,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -93,23 +93,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -161,22 +161,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -68,25 +68,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -125,24 +125,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -123,27 +123,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -189,26 +189,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -153,29 +153,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -224,28 +224,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -134,27 +134,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -201,26 +201,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -66,23 +66,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -136,22 +136,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -110,23 +110,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -186,22 +186,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -72,25 +72,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -130,24 +130,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -153,27 +153,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -233,26 +233,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -193,29 +193,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -276,28 +276,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -165,27 +165,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -243,26 +243,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -60,23 +60,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -144,22 +144,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -93,23 +93,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -160,22 +160,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -68,25 +68,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -125,24 +125,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -123,27 +123,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -188,26 +188,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -161,29 +161,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -231,28 +231,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -142,27 +142,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -208,26 +208,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -60,23 +60,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -130,22 +130,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -110,23 +110,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -185,22 +185,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+16
-16
@@ -72,25 +72,25 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -130,24 +130,24 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.d.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -153,27 +153,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -232,26 +232,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/a.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/a.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/b.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/b.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/c.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/c.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/d.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/e.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/e.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+20
-20
@@ -201,29 +201,29 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -283,28 +283,28 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data2.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data2.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+18
-18
@@ -173,27 +173,27 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -250,26 +250,26 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/app.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/app.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib2/data.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib2/data.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/public.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/public.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/lib1/tools/tools.interface.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/lib1/tools/tools.interface.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+14
-14
@@ -60,23 +60,23 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -144,22 +144,22 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/noemitonerror/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/shared/types/db.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/shared/types/db.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/main.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/main.ts","pollingInterval":250}
|
||||
/user/username/projects/noemitonerror/src/other.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/noEmitOnError/src/other.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/noemitonerror/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noEmitOnError/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/noemitonerror:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/noemitonerror","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
+12
-12
@@ -63,21 +63,21 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/another.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/logger.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
@@ -117,20 +117,20 @@ Semantic diagnostics in builder refreshed for::
|
||||
|
||||
WatchedFiles::
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/tsconfig.json","pollingInterval":250}
|
||||
/user/username/projects/myproject/another.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/another.ts","pollingInterval":250}
|
||||
/user/username/projects/myproject/logger.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/user/username/projects/myproject/logger.ts","pollingInterval":250}
|
||||
/a/lib/lib.d.ts:
|
||||
{"pollingInterval":250}
|
||||
{"fileName":"/a/lib/lib.d.ts","pollingInterval":250}
|
||||
|
||||
FsWatches::
|
||||
|
||||
FsWatchesRecursive::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject/node_modules/@types","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
/user/username/projects/myproject:
|
||||
{"fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
{"directoryName":"/user/username/projects/myproject","fallbackPollingInterval":500,"fallbackOptions":{"watchFile":"PriorityPollingInterval"}}
|
||||
|
||||
exitCode:: ExitStatus.undefined
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user