Some logging for debugging further

This commit is contained in:
Sheetal Nandi
2022-05-25 14:34:04 -07:00
parent 8e79035e14
commit e1ba8a8d5f
210 changed files with 3471 additions and 3 deletions
+17 -3
View File
@@ -1120,10 +1120,15 @@ namespace ts {
recursive,
inodeWatching ?
callbackChangingToMissingFileSystemEntry :
callback
(eventName, relativeFileName) => {
sysLog(`sysLog:: watchPresentFileSystemEntry:: ${fileOrDirectory} ${entryKind} ${eventName}:: ${relativeFileName}`);
callback(eventName, relativeFileName);
}
);
// Watch the missing file or directory or error
presentWatcher.on("error", () => {
sysLog(`sysLog:: watchPresentFileSystemEntry:: on Error ${fileOrDirectory} ${entryKind} rename, ""`);
callback("rename", "");
updateWatcher(watchMissingFileSystemEntry);
});
@@ -1140,7 +1145,11 @@ namespace ts {
}
function callbackChangingToMissingFileSystemEntry(event: "rename" | "change", relativeName: string | undefined) {
if (relativeName && endsWith(relativeName, "~")) relativeName = relativeName.slice(0, relativeName.length - 1);
sysLog(`sysLog:: callbackChangingToMissingFileSystemEntry:: ${fileOrDirectory} ${entryKind} ${event}:: ${relativeName} ${inodeWatching} ${lastDirectoryPart} ${lastDirectoryPartWithDirectorySeparator}`);
if (relativeName && endsWith(relativeName, "~")) {
relativeName = relativeName.slice(0, relativeName.length - 1);
sysLog(`sysLog:: callbackChangingToMissingFileSystemEntry:: changed the relative name to ${relativeName}`);
}
callback(event, relativeName);
// because relativeName is not guaranteed to be correct we need to check on each rename with few combinations
// Eg on ubuntu while watching app/node_modules the relativeName is "node_modules" which is neither relative nor full path
@@ -1164,7 +1173,10 @@ namespace ts {
function watchPresentFileSystemEntryWithFsWatchFile(): FileWatcher {
return watchFile(
fileOrDirectory,
createFileWatcherCallback(callback),
createFileWatcherCallback((eventName, relativeFileName) => {
sysLog(`sysLog:: watchPresentFileSystemEntryWithFsWatchFile:: ${fileOrDirectory} ${entryKind} ${eventName}:: ${relativeFileName}`);
callback(eventName, relativeFileName);
}),
fallbackPollingInterval,
fallbackOptions
);
@@ -1178,7 +1190,9 @@ namespace ts {
return watchFile(
fileOrDirectory,
(_fileName, eventKind) => {
sysLog(`sysLog:: watchMissingFileSystemEntry:: ${fileOrDirectory} ${entryKind} ${_fileName}:: ${eventKind}`);
if (eventKind === FileWatcherEventKind.Created && fileSystemEntryExists(fileOrDirectory, entryKind)) {
sysLog(`sysLog:: watchMissingFileSystemEntry:: Callback :: rename, "" and will update the watcher`);
callback("rename", "");
// Call the callback for current file or directory
// For now it could be callback for the inner directory creation,
@@ -433,6 +433,8 @@ export function lastElementOf<T>(arr: T[]): T | undefined {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/demo/core 1 change:: utilities.ts
>> Screen clear
[12:01:07 AM] File change detected. Starting incremental compilation...
@@ -216,6 +216,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/demo/core 1 change:: tsconfig.json
>> Screen clear
[12:00:52 AM] File change detected. Starting incremental compilation...
@@ -278,6 +278,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: package.json
>> Screen clear
[12:01:17 AM] File change detected. Starting incremental compilation...
@@ -370,6 +372,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: package.json
>> Screen clear
[12:01:24 AM] File change detected. Starting incremental compilation...
@@ -414,6 +418,7 @@ File '/user/username/projects/myproject/packages/pkg2/build/const.ts' does not e
File '/user/username/projects/myproject/packages/pkg2/build/const.tsx' does not exist.
File '/user/username/projects/myproject/packages/pkg2/build/const.d.ts' exist - use it as a name resolution result.
======== Module name './const.js' was successfully resolved to '/user/username/projects/myproject/packages/pkg2/build/const.d.ts'. ========
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: build/index.js
[12:01:30 AM] Found 0 errors. Watching for file changes.
@@ -269,6 +269,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: package.json
>> Screen clear
[12:01:11 AM] File change detected. Starting incremental compilation...
@@ -389,6 +391,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: package.json
>> Screen clear
[12:01:18 AM] File change detected. Starting incremental compilation...
@@ -432,6 +436,7 @@ File '/user/username/projects/myproject/packages/pkg2/build/const.d.cts' exist -
File '/a/lib/package.json' does not exist.
File '/a/package.json' does not exist.
File '/package.json' does not exist.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: build/index.js
[12:01:24 AM] Found 0 errors. Watching for file changes.
@@ -499,6 +504,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: package.json
>> Screen clear
[12:01:28 AM] File change detected. Starting incremental compilation...
@@ -623,6 +630,12 @@ export type { TheNum } from './const.cjs';
//// [/user/username/projects/myproject/packages/pkg2/index.ts] deleted
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: package.json
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 rename:: index.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 rename:: index.cts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change::
>> Screen clear
[12:01:39 AM] File change detected. Starting incremental compilation...
@@ -642,8 +655,16 @@ File '/user/username/projects/myproject/packages/pkg2/const.cts' exist - use it
File '/a/lib/package.json' does not exist.
File '/a/package.json' does not exist.
File '/package.json' does not exist.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 rename:: build/index.cjs
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 rename:: build/index.d.cts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build/tsconfig.tsbuildinfo
[12:01:50 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/packages/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build/const.cjs
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build/const.d.cts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/packages/pkg2/const.cts","/user/username/projects/myproject/packages/pkg2/index.cts"]
@@ -129,6 +129,8 @@ Input::
//// [/user/username/projects/myproject/a.js] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
>> Screen clear
[12:00:35 AM] File change detected. Starting incremental compilation...
@@ -177,6 +179,8 @@ const x = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
@@ -184,6 +188,8 @@ Output::
[12:00:44 AM] Building project '/user/username/projects/myproject/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:00:51 AM] Found 0 errors. Watching for file changes.
@@ -81,6 +81,8 @@ Input::
//// [/user/username/projects/myproject/a.js] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
>> Screen clear
[12:00:31 AM] File change detected. Starting incremental compilation...
@@ -129,6 +131,8 @@ const x = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
@@ -98,6 +98,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:39 AM] File change detected. Starting incremental compilation...
@@ -157,6 +159,8 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:46 AM] File change detected. Starting incremental compilation...
@@ -164,6 +168,24 @@ Output::
[12:00:48 AM] Building project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
[12:01:09 AM] Found 0 errors. Watching for file changes.
@@ -293,6 +315,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
@@ -305,6 +329,8 @@ Output::
2 const a: string = 10;
   ~
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:22 AM] Found 1 error. Watching for file changes.
@@ -424,6 +450,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:27 AM] File change detected. Starting incremental compilation...
@@ -481,6 +509,8 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:34 AM] File change detected. Starting incremental compilation...
@@ -488,8 +518,13 @@ Output::
[12:01:36 AM] Building project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:44 AM] Updating unchanged output timestamps of project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:48 AM] Found 0 errors. Watching for file changes.
@@ -599,6 +634,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:52 AM] File change detected. Starting incremental compilation...
@@ -608,6 +645,10 @@ Output::
[12:01:56 AM] Updating unchanged output timestamps of project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:57 AM] Found 0 errors. Watching for file changes.
@@ -98,6 +98,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:39 AM] File change detected. Starting incremental compilation...
@@ -157,6 +159,8 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:46 AM] File change detected. Starting incremental compilation...
@@ -164,6 +168,20 @@ Output::
[12:00:48 AM] Building project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
[12:01:05 AM] Found 0 errors. Watching for file changes.
@@ -236,6 +254,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:09 AM] File change detected. Starting incremental compilation...
@@ -292,6 +312,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:17 AM] File change detected. Starting incremental compilation...
@@ -349,6 +371,8 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:24 AM] File change detected. Starting incremental compilation...
@@ -356,8 +380,11 @@ Output::
[12:01:26 AM] Building project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
[12:01:31 AM] Updating unchanged output timestamps of project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/other.js
[12:01:32 AM] Found 0 errors. Watching for file changes.
@@ -410,6 +437,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
@@ -419,6 +448,9 @@ Output::
[12:01:40 AM] Updating unchanged output timestamps of project '/user/username/projects/noEmitOnError/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/other.js
[12:01:41 AM] Found 0 errors. Watching for file changes.
@@ -499,6 +499,8 @@ function someFn() { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -506,6 +508,11 @@ Output::
[12:01:33 AM] Building project '/user/username/projects/sample1/logic/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:49 AM] Project 'sample1/tests/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:01:51 AM] Updating output timestamps of project '/user/username/projects/sample1/tests/tsconfig.json'...
@@ -660,6 +667,8 @@ export function someFn() { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
>> Screen clear
[12:01:56 AM] File change detected. Starting incremental compilation...
@@ -667,6 +676,11 @@ Output::
[12:01:58 AM] Building project '/user/username/projects/sample1/logic/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:02:14 AM] Project 'sample1/tests/tsconfig.json' is out of date because oldest output 'sample1/tests/index.js' is older than newest input 'sample1/logic/tsconfig.json'
[12:02:15 AM] Building project '/user/username/projects/sample1/tests/tsconfig.json'...
@@ -158,6 +158,8 @@ export var myClassWithError = class {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
@@ -209,6 +211,8 @@ export class myClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithoutError.ts
>> Screen clear
[12:00:47 AM] File change detected. Starting incremental compilation...
@@ -158,6 +158,8 @@ export var myClassWithError = class {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
@@ -212,9 +214,17 @@ export var myClassWithError = class {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
>> Screen clear
[12:00:47 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithoutError.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithoutError.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:01 AM] Found 0 errors. Watching for file changes.
@@ -82,6 +82,8 @@ export class myClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithoutError.ts
>> Screen clear
[12:00:30 AM] File change detected. Starting incremental compilation...
@@ -85,9 +85,23 @@ export var myClassWithError = class {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
>> Screen clear
[12:00:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: fileWithError.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: fileWithError.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: fileWithoutError.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: fileWithoutError.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change::
[12:00:43 AM] Found 0 errors. Watching for file changes.
@@ -482,6 +482,8 @@ let y: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
>> Screen clear
[12:01:24 AM] File change detected. Starting incremental compilation...
@@ -490,6 +492,8 @@ Output::
8 let y: string = 10;
   ~
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:31 AM] Found 1 error. Watching for file changes.
@@ -634,6 +638,8 @@ let x: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:35 AM] File change detected. Starting incremental compilation...
@@ -642,6 +648,8 @@ Output::
5 let x: string = 10;
   ~
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sample1/logic/index.ts:8:5 - error TS2322: Type 'number' is not assignable to type 'string'.
8 let y: string = 10;
@@ -481,6 +481,7 @@ let y: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
[12:01:24 AM] File change detected. Starting incremental compilation...
sample1/logic/index.ts:8:5 - error TS2322: Type 'number' is not assignable to type 'string'.
@@ -488,6 +489,8 @@ Output::
8 let y: string = 10;
   ~
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:31 AM] Found 1 error. Watching for file changes.
@@ -632,6 +635,7 @@ let x: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
[12:01:35 AM] File change detected. Starting incremental compilation...
sample1/core/index.ts:5:5 - error TS2322: Type 'number' is not assignable to type 'string'.
@@ -639,6 +643,8 @@ Output::
5 let x: string = 10;
   ~
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sample1/logic/index.ts:8:5 - error TS2322: Type 'number' is not assignable to type 'string'.
8 let y: string = 10;
@@ -178,6 +178,9 @@ export const y = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: file3.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
>> Screen clear
[12:00:49 AM] File change detected. Starting incremental compilation...
@@ -185,8 +188,18 @@ Output::
[12:00:51 AM] Building project '/user/username/projects/sample1/core/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: outDir/file3.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: outDir/file3.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/tsconfig.tsbuildinfo
[12:01:00 AM] Updating unchanged output timestamps of project '/user/username/projects/sample1/core/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: outDir/tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:04 AM] Found 0 errors. Watching for file changes.
@@ -193,6 +193,9 @@ export const y = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: file3.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
>> Screen clear
[12:00:50 AM] File change detected. Starting incremental compilation...
@@ -200,8 +203,22 @@ Output::
[12:00:52 AM] Building project '/user/username/projects/sample1/core/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: file3.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: file3.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: file3.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
[12:01:03 AM] Updating unchanged output timestamps of project '/user/username/projects/sample1/core/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:07 AM] Found 0 errors. Watching for file changes.
@@ -221,6 +221,16 @@ Output::
>> Screen clear
[12:00:57 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 rename:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 rename:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 rename:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change::
Program root files: ["/user/username/projects/sample1/logic/index.ts"]
@@ -181,9 +181,15 @@ export function createSomeObject(): SomeObject
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.ts
>> Screen clear
[12:00:44 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
App/app.ts:2:20 - error TS2551: Property 'message' does not exist on type 'SomeObject'. Did you mean 'message2'?
2 createSomeObject().message;
@@ -322,9 +328,16 @@ export function createSomeObject(): SomeObject
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.ts
>> Screen clear
[12:01:01 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/app 1 change:: app.js
[12:01:17 AM] Found 0 errors. Watching for file changes.
@@ -243,9 +243,16 @@ function myFunc() { return 10; }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:00:54 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo.baseline.txt
Program root files: ["/user/username/projects/sample1/core/index.ts"]
@@ -346,6 +353,11 @@ Change:: Build logic
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo.baseline.txt
[12:01:25 AM] Found 0 errors. Watching for file changes.
@@ -495,9 +507,16 @@ function myFunc() { return 100; }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:29 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.tsbuildinfo.baseline.txt
Program root files: ["/user/username/projects/sample1/core/index.ts"]
@@ -594,6 +613,11 @@ Change:: Build logic
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.tsbuildinfo.baseline.txt
[12:01:58 AM] Found 0 errors. Watching for file changes.
@@ -441,9 +441,22 @@ export const newFileConst = 30;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts","/user/username/projects/sample1/core/newfile.ts"]
@@ -558,6 +571,10 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:01:27 AM] Found 0 errors. Watching for file changes.
@@ -634,9 +651,19 @@ export class someClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts","/user/username/projects/sample1/core/newfile.ts"]
@@ -759,6 +786,10 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:01:47 AM] Found 0 errors. Watching for file changes.
@@ -445,9 +445,17 @@ export class someClass { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -565,6 +573,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:55 AM] Found 0 errors. Watching for file changes.
@@ -796,9 +809,17 @@ export function multiply(a: number, b: number) { return a * b; }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:59 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -908,6 +929,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:02:40 AM] Found 0 errors. Watching for file changes.
@@ -1141,9 +1167,18 @@ export class someClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:02:47 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -1269,6 +1304,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:03:29 AM] Found 0 errors. Watching for file changes.
@@ -445,9 +445,21 @@ function foo() { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:01:30 AM] Found 0 errors. Watching for file changes.
@@ -475,9 +475,26 @@ export const newFileConst = 30;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
>> Screen clear
[12:01:23 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 rename:: newfile.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts","/user/username/projects/sample1/core/newfile.ts"]
@@ -599,6 +616,10 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:01:39 AM] Found 0 errors. Watching for file changes.
@@ -675,9 +696,22 @@ export class someClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.ts
>> Screen clear
[12:01:43 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: newfile.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts","/user/username/projects/sample1/core/newfile.ts"]
@@ -807,6 +841,10 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:02:02 AM] Found 0 errors. Watching for file changes.
@@ -479,9 +479,19 @@ export class someClass { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:24 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -605,6 +615,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:02:08 AM] Found 0 errors. Watching for file changes.
@@ -836,9 +851,19 @@ export function multiply(a: number, b: number) { return a * b; }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:02:12 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -954,6 +979,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:02:56 AM] Found 0 errors. Watching for file changes.
@@ -1187,9 +1217,20 @@ export class someClass2 { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:03:03 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/sample1/core/anotherModule.ts","/user/username/projects/sample1/core/index.ts"]
@@ -1321,6 +1362,11 @@ Change:: Build logic and tests
Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:03:48 AM] Found 0 errors. Watching for file changes.
@@ -479,9 +479,23 @@ function foo() { }
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
>> Screen clear
[12:01:24 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: anotherModule.d.ts.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.js.map
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: tsconfig.tsbuildinfo
[12:01:43 AM] Found 0 errors. Watching for file changes.
@@ -71,9 +71,13 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.json
>> Screen clear
[12:00:26 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:29 AM] Found 0 errors. Watching for file changes.
@@ -405,6 +405,9 @@ Output::
[12:01:19 AM] Building project '/a/b/project2.tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: other.js
[12:01:29 AM] Found 0 errors. Watching for file changes.
@@ -477,6 +480,8 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: alpha.tsconfig.json
>> Screen clear
[12:01:34 AM] File change detected. Starting incremental compilation...
@@ -486,6 +491,11 @@ Output::
[12:01:38 AM] Updating unchanged output timestamps of project '/a/b/project1.tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile1.d.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile2.d.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: project1.tsconfig.tsbuildinfo
Program root files: ["/a/b/commonFile1.ts","/a/b/commonFile2.ts"]
@@ -544,6 +554,9 @@ Output::
[12:01:42 AM] Updating unchanged output timestamps of project '/a/b/project2.tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: commonFile2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: other.js
[12:01:43 AM] Found 0 errors. Watching for file changes.
@@ -1841,6 +1841,8 @@ export const pkg0 = 0;const someConst2 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:06:32 AM] File change detected. Starting incremental compilation...
@@ -1848,94 +1850,164 @@ Output::
[12:06:34 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:06:47 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:06:49 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:06:50 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:06:52 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:06:53 AM] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:06:55 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:06:56 AM] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:06:58 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:06:59 AM] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:01 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
[12:07:02 AM] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:04 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:07:05 AM] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:07 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:07:08 AM] Project 'pkg8/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:10 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg8/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: tsconfig.tsbuildinfo
[12:07:11 AM] Project 'pkg9/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:13 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg9/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: tsconfig.tsbuildinfo
[12:07:14 AM] Project 'pkg10/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:16 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg10/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: tsconfig.tsbuildinfo
[12:07:17 AM] Project 'pkg11/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:19 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg11/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: tsconfig.tsbuildinfo
[12:07:20 AM] Project 'pkg12/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:22 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg12/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: tsconfig.tsbuildinfo
[12:07:23 AM] Project 'pkg13/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:25 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg13/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: tsconfig.tsbuildinfo
[12:07:26 AM] Project 'pkg14/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:28 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg14/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: tsconfig.tsbuildinfo
[12:07:29 AM] Project 'pkg15/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:31 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg15/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: tsconfig.tsbuildinfo
[12:07:32 AM] Project 'pkg16/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:34 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg16/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: tsconfig.tsbuildinfo
[12:07:35 AM] Project 'pkg17/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:37 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg17/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: tsconfig.tsbuildinfo
[12:07:38 AM] Project 'pkg18/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:40 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg18/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: tsconfig.tsbuildinfo
[12:07:41 AM] Project 'pkg19/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:43 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg19/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: tsconfig.tsbuildinfo
[12:07:44 AM] Project 'pkg20/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:46 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg20/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: tsconfig.tsbuildinfo
[12:07:47 AM] Project 'pkg21/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:49 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg21/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: tsconfig.tsbuildinfo
[12:07:50 AM] Project 'pkg22/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:07:52 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg22/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: tsconfig.tsbuildinfo
[12:07:53 AM] Found 0 errors. Watching for file changes.
@@ -2375,6 +2447,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:07:56 AM] File change detected. Starting incremental compilation...
@@ -2382,6 +2456,10 @@ Output::
[12:07:58 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -2606,30 +2684,45 @@ Output::
[12:08:14 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:08:15 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:16 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:08:18 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:08:19 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:20 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:08:22 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:08:23 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:24 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:08:26 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:08:27 AM] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:28 AM] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
[12:08:30 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg1/index.ts"]
@@ -2862,30 +2955,45 @@ Output::
[12:08:34 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:08:35 AM] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:36 AM] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
[12:08:38 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:08:39 AM] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:40 AM] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
[12:08:42 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg8/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: tsconfig.tsbuildinfo
[12:08:43 AM] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:44 AM] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
[12:08:46 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg9/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: tsconfig.tsbuildinfo
[12:08:47 AM] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:48 AM] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
[12:08:50 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg10/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg6/index.ts"]
@@ -3118,30 +3226,45 @@ Output::
[12:08:54 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg11/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: tsconfig.tsbuildinfo
[12:08:55 AM] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:08:56 AM] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
[12:08:58 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg12/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: tsconfig.tsbuildinfo
[12:08:59 AM] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:00 AM] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
[12:09:02 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg13/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: tsconfig.tsbuildinfo
[12:09:03 AM] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:04 AM] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
[12:09:06 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg14/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: tsconfig.tsbuildinfo
[12:09:07 AM] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:08 AM] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
[12:09:10 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg15/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg11/index.ts"]
@@ -3374,30 +3497,45 @@ Output::
[12:09:14 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg16/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: tsconfig.tsbuildinfo
[12:09:15 AM] Project 'pkg17/tsconfig.json' is out of date because oldest output 'pkg17/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:16 AM] Building project '/user/username/projects/myproject/pkg17/tsconfig.json'...
[12:09:18 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg17/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: tsconfig.tsbuildinfo
[12:09:19 AM] Project 'pkg18/tsconfig.json' is out of date because oldest output 'pkg18/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:20 AM] Building project '/user/username/projects/myproject/pkg18/tsconfig.json'...
[12:09:22 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg18/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: tsconfig.tsbuildinfo
[12:09:23 AM] Project 'pkg19/tsconfig.json' is out of date because oldest output 'pkg19/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:24 AM] Building project '/user/username/projects/myproject/pkg19/tsconfig.json'...
[12:09:26 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg19/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: tsconfig.tsbuildinfo
[12:09:27 AM] Project 'pkg20/tsconfig.json' is out of date because oldest output 'pkg20/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:28 AM] Building project '/user/username/projects/myproject/pkg20/tsconfig.json'...
[12:09:30 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg20/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg16/index.ts"]
@@ -3630,12 +3768,18 @@ Output::
[12:09:35 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg21/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: tsconfig.tsbuildinfo
[12:09:36 AM] Project 'pkg22/tsconfig.json' is out of date because oldest output 'pkg22/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:09:37 AM] Building project '/user/username/projects/myproject/pkg22/tsconfig.json'...
[12:09:39 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg22/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: tsconfig.tsbuildinfo
[12:09:40 AM] Found 0 errors. Watching for file changes.
@@ -3980,6 +4124,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;export c
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:09:43 AM] File change detected. Starting incremental compilation...
@@ -3987,6 +4133,10 @@ Output::
[12:09:45 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -4213,30 +4363,45 @@ Output::
[12:10:01 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:10:02 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:03 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:10:05 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:10:06 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:07 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:10:09 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:10:10 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:11 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:10:13 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:10:14 AM] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:15 AM] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
[12:10:17 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg1/index.ts"]
@@ -4469,30 +4634,45 @@ Output::
[12:10:21 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:10:22 AM] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:23 AM] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
[12:10:25 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:10:26 AM] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:27 AM] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
[12:10:29 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg8/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: tsconfig.tsbuildinfo
[12:10:30 AM] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:31 AM] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
[12:10:33 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg9/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: tsconfig.tsbuildinfo
[12:10:34 AM] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:10:35 AM] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
[12:10:37 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg10/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg6/index.ts"]
@@ -4722,6 +4902,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;export c
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:10:40 AM] File change detected. Starting incremental compilation...
@@ -4729,46 +4911,80 @@ Output::
[12:10:42 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:10:55 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:10:57 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:10:58 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:00 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:11:01 AM] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:03 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:11:04 AM] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:06 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:11:07 AM] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:09 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
[12:11:10 AM] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:12 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:11:13 AM] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:15 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:11:16 AM] Project 'pkg8/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:18 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg8/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: tsconfig.tsbuildinfo
[12:11:19 AM] Project 'pkg9/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:21 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg9/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: tsconfig.tsbuildinfo
[12:11:22 AM] Project 'pkg10/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:11:24 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg10/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -5021,30 +5237,45 @@ Output::
[12:11:28 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg11/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: tsconfig.tsbuildinfo
[12:11:29 AM] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:11:30 AM] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
[12:11:32 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg12/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: tsconfig.tsbuildinfo
[12:11:33 AM] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:11:34 AM] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
[12:11:36 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg13/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: tsconfig.tsbuildinfo
[12:11:37 AM] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:11:38 AM] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
[12:11:40 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg14/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: tsconfig.tsbuildinfo
[12:11:41 AM] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:11:42 AM] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
[12:11:44 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg15/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg11/index.ts"]
@@ -5274,6 +5505,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;export c
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:11:48 AM] File change detected. Starting incremental compilation...
@@ -5281,6 +5514,10 @@ Output::
[12:11:50 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -5510,30 +5747,45 @@ Output::
[12:12:06 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:12:07 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:08 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:12:10 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:12:11 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:12 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:12:14 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:12:15 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:16 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:12:18 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:12:19 AM] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:20 AM] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
[12:12:22 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg1/index.ts"]
@@ -5766,30 +6018,45 @@ Output::
[12:12:26 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:12:27 AM] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:28 AM] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
[12:12:30 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:12:31 AM] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:32 AM] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
[12:12:34 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg8/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg8 1 change:: tsconfig.tsbuildinfo
[12:12:35 AM] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:36 AM] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
[12:12:38 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg9/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg9 1 change:: tsconfig.tsbuildinfo
[12:12:39 AM] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:40 AM] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
[12:12:42 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg10/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg10 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg6/index.ts"]
@@ -6022,30 +6289,45 @@ Output::
[12:12:46 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg11/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg11 1 change:: tsconfig.tsbuildinfo
[12:12:47 AM] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:48 AM] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
[12:12:50 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg12/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg12 1 change:: tsconfig.tsbuildinfo
[12:12:51 AM] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:52 AM] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
[12:12:54 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg13/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg13 1 change:: tsconfig.tsbuildinfo
[12:12:55 AM] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:12:56 AM] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
[12:12:58 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg14/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg14 1 change:: tsconfig.tsbuildinfo
[12:12:59 AM] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:00 AM] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
[12:13:02 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg15/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg15 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg11/index.ts"]
@@ -6278,30 +6560,45 @@ Output::
[12:13:06 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg16/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg16 1 change:: tsconfig.tsbuildinfo
[12:13:07 AM] Project 'pkg17/tsconfig.json' is out of date because oldest output 'pkg17/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:08 AM] Building project '/user/username/projects/myproject/pkg17/tsconfig.json'...
[12:13:10 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg17/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg17 1 change:: tsconfig.tsbuildinfo
[12:13:11 AM] Project 'pkg18/tsconfig.json' is out of date because oldest output 'pkg18/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:12 AM] Building project '/user/username/projects/myproject/pkg18/tsconfig.json'...
[12:13:14 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg18/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg18 1 change:: tsconfig.tsbuildinfo
[12:13:15 AM] Project 'pkg19/tsconfig.json' is out of date because oldest output 'pkg19/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:16 AM] Building project '/user/username/projects/myproject/pkg19/tsconfig.json'...
[12:13:18 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg19/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg19 1 change:: tsconfig.tsbuildinfo
[12:13:19 AM] Project 'pkg20/tsconfig.json' is out of date because oldest output 'pkg20/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:20 AM] Building project '/user/username/projects/myproject/pkg20/tsconfig.json'...
[12:13:22 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg20/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg20 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg16/index.ts"]
@@ -6534,12 +6831,18 @@ Output::
[12:13:26 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg21/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg21 1 change:: tsconfig.tsbuildinfo
[12:13:27 AM] Project 'pkg22/tsconfig.json' is out of date because oldest output 'pkg22/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:13:28 AM] Building project '/user/username/projects/myproject/pkg22/tsconfig.json'...
[12:13:30 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg22/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg22 1 change:: tsconfig.tsbuildinfo
[12:13:31 AM] Found 0 errors. Watching for file changes.
@@ -281,6 +281,8 @@ export const pkg0 = 0;const someConst2 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:01:12 AM] File change detected. Starting incremental compilation...
@@ -288,14 +290,24 @@ Output::
[12:01:14 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:27 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:01:29 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:01:30 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:01:32 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:01:33 AM] Found 0 errors. Watching for file changes.
@@ -435,6 +447,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
@@ -442,6 +456,10 @@ Output::
[12:01:38 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -546,12 +564,18 @@ Output::
[12:01:54 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:01:55 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:01:56 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:01:58 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:01:59 AM] Found 0 errors. Watching for file changes.
@@ -437,6 +437,8 @@ export const pkg0 = 0;const someConst2 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -444,22 +446,38 @@ Output::
[12:01:46 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:59 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:01 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:02:02 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:04 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:02:05 AM] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:07 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:02:08 AM] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:10 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:02:11 AM] Found 0 errors. Watching for file changes.
@@ -629,6 +647,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:02:14 AM] File change detected. Starting incremental compilation...
@@ -636,6 +656,10 @@ Output::
[12:02:16 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -752,24 +776,36 @@ Output::
[12:02:32 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:02:33 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:02:34 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:02:36 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:02:37 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:02:38 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:02:40 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:02:41 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:02:42 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:02:44 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:02:45 AM] Found 0 errors. Watching for file changes.
@@ -671,6 +671,8 @@ export const pkg0 = 0;const someConst2 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:02:32 AM] File change detected. Starting incremental compilation...
@@ -678,34 +680,59 @@ Output::
[12:02:34 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:02:47 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:49 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:02:50 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:52 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:02:53 AM] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:55 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:02:56 AM] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:02:58 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:02:59 AM] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:03:01 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
[12:03:02 AM] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:03:04 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:03:05 AM] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:03:07 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:03:08 AM] Found 0 errors. Watching for file changes.
@@ -920,6 +947,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:03:11 AM] File change detected. Starting incremental compilation...
@@ -927,6 +956,10 @@ Output::
[12:03:13 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -1061,30 +1094,45 @@ Output::
[12:03:29 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:03:30 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:03:31 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:03:33 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:03:34 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:03:35 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:03:37 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:03:38 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:03:39 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:03:41 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:03:42 AM] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:03:43 AM] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
[12:03:45 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg1/index.ts"]
@@ -1227,12 +1275,18 @@ Output::
[12:03:49 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:03:50 AM] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:03:51 AM] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
[12:03:53 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:03:54 AM] Found 0 errors. Watching for file changes.
@@ -1397,6 +1451,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;export c
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:03:57 AM] File change detected. Starting incremental compilation...
@@ -1404,6 +1460,10 @@ Output::
[12:03:59 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -1540,30 +1600,45 @@ Output::
[12:04:16 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:04:17 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:04:18 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:04:20 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:04:21 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:04:22 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:04:24 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:04:25 AM] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:04:26 AM] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
[12:04:28 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:04:29 AM] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:04:30 AM] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
[12:04:32 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg1/index.ts"]
@@ -1703,6 +1778,8 @@ export const pkg0 = 0;const someConst2 = 10;export const someConst = 10;export c
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.ts
>> Screen clear
[12:04:35 AM] File change detected. Starting incremental compilation...
@@ -1710,26 +1787,45 @@ Output::
[12:04:37 AM] Building project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:04:50 AM] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:04:52 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: tsconfig.tsbuildinfo
[12:04:53 AM] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:04:55 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: tsconfig.tsbuildinfo
[12:04:56 AM] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:04:58 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: tsconfig.tsbuildinfo
[12:04:59 AM] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:05:01 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg4/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg4 1 change:: tsconfig.tsbuildinfo
[12:05:02 AM] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
[12:05:04 AM] Updating output timestamps of project '/user/username/projects/myproject/pkg5/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg5 1 change:: tsconfig.tsbuildinfo
Program root files: ["/user/username/projects/myproject/pkg0/index.ts"]
@@ -1877,12 +1973,18 @@ Output::
[12:05:08 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg6/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg6 1 change:: tsconfig.tsbuildinfo
[12:05:09 AM] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
[12:05:10 AM] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
[12:05:12 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg7/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg7 1 change:: tsconfig.tsbuildinfo
[12:05:13 AM] Found 0 errors. Watching for file changes.
@@ -256,6 +256,8 @@ export function f2() { } // trailing
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/shared 1 change:: index.ts
>> Screen clear
[12:00:55 AM] File change detected. Starting incremental compilation...
@@ -263,12 +265,19 @@ Output::
[12:00:57 AM] Building project '/user/username/projects/myproject/shared/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/shared 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/shared 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/shared 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/shared 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
[12:01:10 AM] Project 'webpack/tsconfig.json' is out of date because oldest output 'webpack/index.js' is older than newest input 'shared/tsconfig.json'
[12:01:11 AM] Building project '/user/username/projects/myproject/webpack/tsconfig.json'...
[12:01:13 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/webpack/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/webpack 1 change:: index.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/webpack 1 change:: index.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/webpack 1 change:: tsconfig.tsbuildinfo
[12:01:14 AM] Found 0 errors. Watching for file changes.
@@ -264,6 +264,8 @@ export interface Session {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/reexport/src/pure 1 change:: session.ts
>> Screen clear
[12:01:07 AM] File change detected. Starting incremental compilation...
@@ -429,6 +431,8 @@ export interface Session {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/reexport/src/pure 1 change:: session.ts
>> Screen clear
[12:01:34 AM] File change detected. Starting incremental compilation...
@@ -229,24 +229,28 @@ Output::
[12:01:13 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
[12:01:14 AM] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:15 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
[12:01:17 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
[12:01:18 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:19 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:01:21 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
[12:01:22 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:23 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:01:25 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
[12:01:26 AM] Found 0 errors. Watching for file changes.
@@ -411,18 +415,21 @@ Output::
[12:01:39 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
[12:01:40 AM] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:41 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
[12:01:43 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
[12:01:44 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:45 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:01:47 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
[12:01:48 AM] Found 0 errors. Watching for file changes.
@@ -232,24 +232,28 @@ Output::
[12:01:13 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
[12:01:14 AM] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:15 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
[12:01:17 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
[12:01:18 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:19 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:01:21 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
[12:01:22 AM] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:23 AM] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
[12:01:25 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
[12:01:26 AM] Found 0 errors. Watching for file changes.
@@ -419,18 +423,21 @@ Output::
[12:01:39 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
[12:01:40 AM] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:41 AM] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
[12:01:43 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
[12:01:44 AM] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
[12:01:45 AM] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
[12:01:47 AM] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
[12:01:48 AM] Found 0 errors. Watching for file changes.
@@ -71,8 +71,10 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.ts
[12:00:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.js
[12:00:23 AM] Found 0 errors. Watching for file changes.
@@ -70,8 +70,10 @@ Input::
Output::
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.ts
[12:00:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.js
[12:00:23 AM] Found 0 errors. Watching for file changes.
@@ -75,9 +75,15 @@ var b = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 rename:: file.ts
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 change::
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 rename:: file.ts
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 change::
>> Screen clear
[12:00:28 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 change:: file.js
[12:00:32 AM] Found 0 errors. Watching for file changes.
@@ -109,9 +109,14 @@ export function Foo() { return 10; }export function foo2() { return 2; }
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f1.ts
>> Screen clear
[12:00:29 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f3.js
[12:00:39 AM] Found 0 errors. Watching for file changes.
@@ -178,9 +183,13 @@ export function Foo() { return 10; }export function foo2() { return 2; }export f
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f1.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f2.js
[12:00:49 AM] Found 0 errors. Watching for file changes.
@@ -139,9 +139,12 @@ export var T: number;export function Foo() { };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
a/b/globalFile3.ts:1:1 - error TS1208: 'globalFile3.ts' cannot be compiled under '--isolatedModules' because it is considered a global script file. Add an import, export, or an empty 'export {}' statement to make it a module.
1 interface GlobalFoo { age: number }
@@ -138,9 +138,12 @@ export var T: number;export function Foo() { };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: out.js
[12:00:34 AM] Found 0 errors. Watching for file changes.
@@ -135,9 +135,15 @@ export var T: number;export function Foo() { };
//// [/a/b/file1Consumer2.ts] deleted
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: file1Consumer2.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
>> Screen clear
[12:00:39 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:00:46 AM] Found 0 errors. Watching for file changes.
@@ -137,9 +137,18 @@ import {Foo} from "./moduleFile1"; let y = Foo();
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: file1Consumer3.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:40 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: file1Consumer3.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:00:52 AM] Found 0 errors. Watching for file changes.
@@ -134,9 +134,12 @@ export let y = Foo();
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
a/b/file1Consumer1.ts:1:16 - error TS2304: Cannot find name 'Foo'.
1 export let y = Foo();
@@ -205,9 +208,13 @@ export var T: number;export function Foo() { };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:46 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
a/b/file1Consumer1.ts:1:16 - error TS2304: Cannot find name 'Foo'.
1 export let y = Foo();
@@ -281,9 +288,12 @@ import {Foo} from "./moduleFile1";let y = Foo();
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
>> Screen clear
[12:00:57 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:01:01 AM] Found 0 errors. Watching for file changes.
@@ -347,9 +357,14 @@ export let y = Foo();
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:01:06 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
a/b/file1Consumer1.ts:1:9 - error TS2305: Module '"./moduleFile1"' has no exported member 'Foo'.
1 import {Foo} from "./moduleFile1";let y = Foo();
@@ -435,9 +450,15 @@ export var T: number;export function Foo() { };
//// [/a/b/file1Consumer1.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:01:23 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:01:33 AM] Found 0 errors. Watching for file changes.
@@ -134,9 +134,14 @@ export var T: number;export function Foo() { };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:00:48 AM] Found 0 errors. Watching for file changes.
@@ -208,9 +213,12 @@ export var T: number;export function Foo() { console.log('hi'); };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:52 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
a/b/moduleFile1.ts:1:46 - error TS2584: Cannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.
1 export var T: number;export function Foo() { console.log('hi'); };
@@ -92,9 +92,12 @@ export var x = Foo();export var yy = Foo();
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.ts
>> Screen clear
[12:00:21 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.js
a/b/referenceFile1.ts:1:22 - error TS6053: File '/a/b/moduleFile2.ts' not found.
1 /// <reference path="./moduleFile2.ts" />
@@ -165,9 +168,15 @@ export var Foo4 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: moduleFile2.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
>> Screen clear
[12:00:28 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: moduleFile2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.js
a/b/referenceFile1.ts:2:16 - error TS2304: Cannot find name 'Foo'.
2 export var x = Foo();export var yy = Foo();
@@ -99,9 +99,13 @@ Input::
//// [/a/b/moduleFile1.ts] deleted
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 rename:: moduleFile1.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change::
>> Screen clear
[12:00:24 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.js
a/b/referenceFile1.ts:1:22 - error TS6053: File '/a/b/moduleFile1.ts' not found.
1 /// <reference path="./moduleFile1.ts" />
@@ -134,9 +134,16 @@ interface GlobalFoo { age: number }var T2: string;
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: globalFile3.ts
>> Screen clear
[12:00:37 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: globalFile3.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile2.js
[12:00:53 AM] Found 0 errors. Watching for file changes.
@@ -147,9 +147,13 @@ import {Foo} from "./moduleFile1"; export var y = 10;export var T: number;
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
>> Screen clear
[12:00:41 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1Consumer1.js
[12:00:48 AM] Found 0 errors. Watching for file changes.
@@ -219,9 +223,14 @@ export var T: number;export function Foo() { };
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:00:52 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
[12:01:02 AM] Found 0 errors. Watching for file changes.
@@ -299,9 +308,16 @@ import {Foo} from "./moduleFile1"; export var y = 10;export var T: number;export
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1Consumer1.js
[12:01:21 AM] Found 0 errors. Watching for file changes.
@@ -97,9 +97,13 @@ export var t1 = 10;export var t3 = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1.ts
>> Screen clear
[12:00:25 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1.js
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file2.js
[12:00:32 AM] Found 0 errors. Watching for file changes.
@@ -86,9 +86,13 @@ let x = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:24 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: b.js
[12:00:31 AM] Found 0 errors. Watching for file changes.
@@ -144,9 +148,13 @@ let xy = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:35 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: b.js
[12:00:42 AM] Found 0 errors. Watching for file changes.
@@ -77,9 +77,12 @@ let x = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:22 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
[12:00:26 AM] Found 0 errors. Watching for file changes.
@@ -130,9 +133,12 @@ let xy = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
[12:00:34 AM] Found 0 errors. Watching for file changes.
@@ -77,9 +77,12 @@ let x = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:22 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
[12:00:26 AM] Found 0 errors. Watching for file changes.
@@ -130,9 +133,12 @@ let xy = 11
Output::
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
>> Screen clear
[12:00:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
[12:00:34 AM] Found 0 errors. Watching for file changes.
@@ -86,6 +86,8 @@ var zz30 = 100;
Output::
sysLog:: watchPresentFileSystemEntry:: /a/rootfolder/project/scripts 1 rename:: TypeScript.ts
>> Screen clear
[12:00:34 AM] File change detected. Starting incremental compilation...
@@ -40,6 +40,8 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:28 AM] Found 0 errors. Watching for file changes.
@@ -109,6 +111,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:32 AM] File change detected. Starting incremental compilation...
@@ -169,6 +174,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:37 AM] File change detected. Starting incremental compilation...
@@ -229,6 +237,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
@@ -134,9 +134,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -214,9 +219,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:50 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -291,9 +300,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:01 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -184,9 +184,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:44 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: e.js
[12:01:00 AM] Found 0 errors. Watching for file changes.
@@ -263,9 +270,13 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:04 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
[12:01:11 AM] Found 0 errors. Watching for file changes.
@@ -333,9 +344,13 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:15 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
[12:01:22 AM] Found 0 errors. Watching for file changes.
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -363,9 +381,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -373,6 +394,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -495,6 +517,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -552,11 +576,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -667,6 +696,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -97,6 +97,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
@@ -156,9 +158,25 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:41 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
[12:00:58 AM] Found 0 errors. Watching for file changes.
@@ -229,6 +247,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:02 AM] File change detected. Starting incremental compilation...
@@ -285,6 +305,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
@@ -342,9 +364,12 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
[12:01:17 AM] Found 0 errors. Watching for file changes.
@@ -399,6 +424,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:21 AM] File change detected. Starting incremental compilation...
@@ -40,6 +40,10 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:30 AM] Found 0 errors. Watching for file changes.
@@ -113,6 +117,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:34 AM] File change detected. Starting incremental compilation...
@@ -173,6 +180,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:39 AM] File change detected. Starting incremental compilation...
@@ -233,6 +243,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:44 AM] File change detected. Starting incremental compilation...
@@ -151,9 +151,15 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:00:55 AM] Found 0 errors. Watching for file changes.
@@ -230,9 +236,15 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:59 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:01:12 AM] Found 0 errors. Watching for file changes.
@@ -309,9 +321,15 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:16 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:01:29 AM] Found 0 errors. Watching for file changes.
@@ -214,9 +214,15 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:54 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -312,9 +318,15 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:11 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -410,9 +422,15 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:28 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -174,6 +174,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -233,11 +235,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -379,9 +403,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -389,6 +416,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -512,6 +540,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -569,11 +599,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -686,6 +722,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -97,6 +97,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
@@ -156,9 +158,31 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:41 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
[12:01:04 AM] Found 0 errors. Watching for file changes.
@@ -243,6 +267,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
@@ -299,6 +325,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
@@ -356,9 +384,13 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
[12:01:26 AM] Found 0 errors. Watching for file changes.
@@ -414,6 +446,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
@@ -40,6 +40,8 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:28 AM] Found 0 errors. Watching for file changes.
@@ -109,6 +111,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:32 AM] File change detected. Starting incremental compilation...
@@ -176,6 +181,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:37 AM] File change detected. Starting incremental compilation...
@@ -238,6 +246,9 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
@@ -134,9 +134,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -214,9 +219,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:50 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
[12:00:57 AM] Found 0 errors. Watching for file changes.
@@ -288,9 +297,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:01 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -184,9 +184,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:44 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: e.js
[12:01:00 AM] Found 0 errors. Watching for file changes.
@@ -263,9 +270,13 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:04 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -353,9 +364,13 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:15 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
[12:01:22 AM] Found 0 errors. Watching for file changes.
@@ -178,6 +178,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -237,11 +239,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -367,9 +385,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -377,6 +398,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -498,6 +520,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -555,11 +579,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -669,6 +698,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -103,6 +103,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
@@ -162,9 +164,25 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:41 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
[12:00:58 AM] Found 0 errors. Watching for file changes.
@@ -235,6 +253,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:02 AM] File change detected. Starting incremental compilation...
@@ -291,6 +311,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
@@ -348,9 +370,12 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
[12:01:17 AM] Found 0 errors. Watching for file changes.
@@ -405,6 +430,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:21 AM] File change detected. Starting incremental compilation...
@@ -40,6 +40,10 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:30 AM] Found 0 errors. Watching for file changes.
@@ -113,9 +117,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:34 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -181,9 +190,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
[12:00:46 AM] Found 0 errors. Watching for file changes.
@@ -244,9 +258,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:50 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -151,9 +151,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:42 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -238,9 +245,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:02 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:01:18 AM] Found 0 errors. Watching for file changes.
@@ -320,9 +334,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:22 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -214,9 +214,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:54 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:01:13 AM] Found 0 errors. Watching for file changes.
@@ -302,9 +310,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:17 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -406,9 +422,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:40 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
[12:01:59 AM] Found 0 errors. Watching for file changes.
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -377,9 +401,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -387,6 +414,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -509,6 +537,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -566,11 +596,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -682,6 +718,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -97,6 +97,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
@@ -156,9 +158,31 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:41 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
[12:01:04 AM] Found 0 errors. Watching for file changes.
@@ -243,6 +267,8 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
@@ -299,6 +325,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
@@ -356,9 +384,13 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
[12:01:26 AM] Found 0 errors. Watching for file changes.
@@ -414,6 +446,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
@@ -40,8 +40,14 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:30 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -178,11 +184,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:40 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -307,11 +320,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:47 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:51 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -436,11 +456,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:58 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:02 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -203,9 +203,15 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:40 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -213,6 +219,7 @@ Output::
[12:00:53 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -361,9 +368,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:00 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -371,6 +383,7 @@ Output::
[12:01:10 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -516,9 +529,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:17 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -526,6 +544,7 @@ Output::
[12:01:27 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -328,11 +328,20 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: e.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:07 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -503,11 +512,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:24 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -669,11 +684,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:41 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -363,9 +381,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -373,6 +394,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -495,6 +517,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -552,11 +576,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -667,6 +696,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -363,9 +381,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -373,6 +394,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -495,6 +517,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -552,11 +576,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -667,6 +696,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -40,8 +40,16 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:32 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -180,11 +188,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:42 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -307,11 +322,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:49 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:53 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -434,11 +456,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:01:00 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:04 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -218,11 +218,19 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:46 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:02 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -364,11 +372,19 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:09 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:25 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -510,11 +526,19 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:32 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:48 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -356,9 +356,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:58 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -377,6 +384,7 @@ Output::
[12:01:14 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -596,9 +604,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:21 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -617,6 +632,7 @@ Output::
[12:01:37 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -836,9 +852,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -857,6 +880,7 @@ Output::
[12:02:00 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -174,6 +174,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -233,11 +235,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -379,9 +403,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -389,6 +416,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -512,6 +540,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -569,11 +599,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -686,6 +722,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -174,6 +174,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -233,11 +235,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -379,9 +403,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -389,6 +416,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -512,6 +540,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -569,11 +599,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -686,6 +722,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -40,8 +40,14 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:30 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -175,9 +181,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -185,6 +196,8 @@ Output::
[12:00:40 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -320,11 +333,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:47 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:51 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -448,9 +468,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:58 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -458,6 +483,8 @@ Output::
[12:01:02 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -200,9 +200,15 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:40 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -210,6 +216,7 @@ Output::
[12:00:53 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -355,11 +362,17 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:00 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:10 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -495,9 +508,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:17 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -505,6 +523,7 @@ Output::
[12:01:27 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -325,11 +325,20 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: e.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:07 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -497,9 +506,14 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:14 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -518,6 +532,7 @@ Output::
[12:01:24 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -728,11 +743,17 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:41 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -178,6 +178,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -237,11 +239,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -367,9 +385,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -377,6 +398,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -498,6 +520,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -555,11 +579,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -669,6 +698,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -178,6 +178,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -237,11 +239,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -367,9 +385,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -377,6 +398,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -498,6 +520,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -555,11 +579,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -669,6 +698,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...
@@ -40,8 +40,16 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:32 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -179,9 +187,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -189,6 +204,8 @@ Output::
[12:00:45 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -325,11 +342,20 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:52 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:59 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -454,9 +480,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:01:06 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -464,6 +497,8 @@ Output::
[12:01:13 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -217,9 +217,17 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:46 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -227,6 +235,7 @@ Output::
[12:01:05 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -382,11 +391,20 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:12 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:31 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -530,9 +548,17 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:38 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -540,6 +566,7 @@ Output::
[12:01:57 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -355,11 +355,21 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:58 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:20 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -539,9 +549,18 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:27 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -560,6 +579,7 @@ Output::
[12:01:49 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -784,11 +804,21 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:56 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: d.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: b.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:02:18 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -377,9 +401,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -387,6 +414,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -509,6 +537,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -566,11 +596,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -682,6 +718,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -173,6 +173,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -232,11 +234,33 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:12 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -377,9 +401,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:19 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -387,6 +414,7 @@ Output::
[12:01:23 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -509,6 +537,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:31 AM] File change detected. Starting incremental compilation...
@@ -566,11 +596,17 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:46 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -682,6 +718,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:53 AM] File change detected. Starting incremental compilation...
@@ -40,8 +40,14 @@ Output::
>> Screen clear
[12:00:25 AM] Starting compilation in watch mode...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
[12:00:30 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -175,9 +181,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:36 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -185,6 +196,8 @@ Output::
[12:00:40 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -320,11 +333,18 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:47 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:51 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -448,9 +468,14 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.d.ts
>> Screen clear
[12:00:58 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -458,6 +483,8 @@ Output::
[12:01:02 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.d.ts","/user/username/projects/myproject/c.d.ts"]
@@ -200,9 +200,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:40 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -210,6 +214,7 @@ Output::
[12:00:47 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -356,11 +361,16 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:00:54 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:01 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -495,9 +505,13 @@ export class C
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
>> Screen clear
[12:01:08 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
a.ts:4:17 - error TS2339: Property 'd' does not exist on type 'C'.
4 console.log(b.c.d);
@@ -505,6 +519,7 @@ Output::
[12:01:15 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts"]
@@ -325,11 +325,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:00:55 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -496,9 +501,13 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:02 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
c.ts:6:13 - error TS2322: Type '{ x: number; y: number; }' is not assignable to type 'Coords'.
Object literal may only specify known properties, and 'x' does not exist in type 'Coords'.
@@ -517,6 +526,7 @@ Output::
[12:01:09 AM] Found 2 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -728,11 +738,16 @@ export interface Coords {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
>> Screen clear
[12:01:16 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo
[12:01:23 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/myproject/a.ts","/user/username/projects/myproject/b.ts","/user/username/projects/myproject/c.ts","/user/username/projects/myproject/d.ts","/user/username/projects/myproject/e.ts"]
@@ -172,6 +172,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:43 AM] File change detected. Starting incremental compilation...
@@ -231,11 +233,27 @@ const a = {
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:00:48 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/shared/types/db.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/shared/types
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 rename:: dev-build/src/other.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:06 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -361,9 +379,12 @@ const a: string = 10;
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:13 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
src/main.ts:2:7 - error TS2322: Type 'number' is not assignable to type 'string'.
2 const a: string = 10;
@@ -371,6 +392,7 @@ Output::
[12:01:17 AM] Found 1 error. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -492,6 +514,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:25 AM] File change detected. Starting incremental compilation...
@@ -549,11 +573,16 @@ const a: string = "hello";
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:30 AM] File change detected. Starting incremental compilation...
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
[12:01:37 AM] Found 0 errors. Watching for file changes.
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo.readable.baseline.txt
Program root files: ["/user/username/projects/noEmitOnError/shared/types/db.ts","/user/username/projects/noEmitOnError/src/main.ts","/user/username/projects/noEmitOnError/src/other.ts"]
@@ -663,6 +692,8 @@ Input::
//// [/user/username/projects/noEmitOnError/src/main.ts] file written with same contents
Output::
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: src/main.ts
>> Screen clear
[12:01:44 AM] File change detected. Starting incremental compilation...

Some files were not shown because too many files have changed in this diff Show More