mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Some logging for debugging further
This commit is contained in:
+17
-3
@@ -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
|
||||
[[90m12:01:07 AM[0m] 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
|
||||
[[90m12:00:52 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+5
@@ -278,6 +278,8 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg2 1 change:: package.json
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+21
@@ -269,6 +269,8 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/packages/pkg1 1 change:: package.json
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:11 AM[0m] 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
|
||||
[[90m12:01:18 AM[0m] 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
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:01:28 AM[0m] 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
|
||||
[[90m12:01:39 AM[0m] 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
|
||||
[[90m12:01:50 AM[0m] 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"]
|
||||
|
||||
+6
@@ -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
|
||||
[[90m12:00:35 AM[0m] 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
|
||||
[[90m12:00:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -184,6 +188,8 @@ Output::
|
||||
|
||||
[[90m12:00:44 AM[0m] 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
|
||||
[[90m12:00:51 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+4
@@ -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
|
||||
[[90m12:00:31 AM[0m] 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
|
||||
[[90m12:00:38 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+41
@@ -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
|
||||
[[90m12:00:39 AM[0m] 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
|
||||
[[90m12:00:46 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -164,6 +168,24 @@ Output::
|
||||
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:09 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -305,6 +329,8 @@ Output::
|
||||
[7m2[0m const a: string = 10;
|
||||
[7m [0m [91m ~[0m
|
||||
|
||||
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
|
||||
[[90m12:01:22 AM[0m] 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
|
||||
[[90m12:01:27 AM[0m] 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
|
||||
[[90m12:01:34 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -488,8 +518,13 @@ Output::
|
||||
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] 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
|
||||
[[90m12:01:48 AM[0m] 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
|
||||
[[90m12:01:52 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -608,6 +645,10 @@ Output::
|
||||
|
||||
[[90m12:01:56 AM[0m] 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
|
||||
[[90m12:01:57 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+32
@@ -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
|
||||
[[90m12:00:39 AM[0m] 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
|
||||
[[90m12:00:46 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -164,6 +168,20 @@ Output::
|
||||
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:05 AM[0m] 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
|
||||
[[90m12:01:09 AM[0m] 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
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -356,8 +380,11 @@ Output::
|
||||
|
||||
[[90m12:01:26 AM[0m] Building project '/user/username/projects/noEmitOnError/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:32 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -419,6 +448,9 @@ Output::
|
||||
|
||||
[[90m12:01:40 AM[0m] 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
|
||||
[[90m12:01:41 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+14
@@ -499,6 +499,8 @@ function someFn() { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:31 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -506,6 +508,11 @@ Output::
|
||||
|
||||
[[90m12:01:33 AM[0m] 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
|
||||
[[90m12:01:49 AM[0m] Project 'sample1/tests/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:01:51 AM[0m] 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
|
||||
[[90m12:01:56 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -667,6 +676,11 @@ Output::
|
||||
|
||||
[[90m12:01:58 AM[0m] 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
|
||||
[[90m12:02:14 AM[0m] 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'
|
||||
|
||||
[[90m12:02:15 AM[0m] Building project '/user/username/projects/sample1/tests/tsconfig.json'...
|
||||
|
||||
+4
@@ -158,6 +158,8 @@ export var myClassWithError = class {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[[90m12:00:47 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+10
@@ -158,6 +158,8 @@ export var myClassWithError = class {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[[90m12:00:47 AM[0m] 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
|
||||
[[90m12:01:01 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+2
@@ -82,6 +82,8 @@ export class myClass2 { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithoutError.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+14
@@ -85,9 +85,23 @@ export var myClassWithError = class {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/solution/app 1 change:: fileWithError.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:30 AM[0m] 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::
|
||||
[[90m12:00:43 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+8
@@ -482,6 +482,8 @@ let y: string = 10;
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -490,6 +492,8 @@ Output::
|
||||
[7m8[0m let y: string = 10;
|
||||
[7m [0m [91m ~[0m
|
||||
|
||||
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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:35 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -642,6 +648,8 @@ Output::
|
||||
[7m5[0m let x: string = 10;
|
||||
[7m [0m [91m ~[0m
|
||||
|
||||
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
|
||||
[96msample1/logic/index.ts[0m:[93m8[0m:[93m5[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m8[0m let y: string = 10;
|
||||
|
||||
+6
@@ -481,6 +481,7 @@ let y: string = 10;
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/logic 1 change:: index.ts
|
||||
[[90m12:01:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
[96msample1/logic/index.ts[0m:[93m8[0m:[93m5[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
@@ -488,6 +489,8 @@ Output::
|
||||
[7m8[0m let y: string = 10;
|
||||
[7m [0m [91m ~[0m
|
||||
|
||||
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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:35 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
[96msample1/core/index.ts[0m:[93m5[0m:[93m5[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
@@ -639,6 +643,8 @@ Output::
|
||||
[7m5[0m let x: string = 10;
|
||||
[7m [0m [91m ~[0m
|
||||
|
||||
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
|
||||
[96msample1/logic/index.ts[0m:[93m8[0m:[93m5[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m8[0m let y: string = 10;
|
||||
|
||||
+13
@@ -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
|
||||
[[90m12:00:49 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -185,8 +188,18 @@ Output::
|
||||
|
||||
[[90m12:00:51 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+17
@@ -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
|
||||
[[90m12:00:50 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -200,8 +203,22 @@ Output::
|
||||
|
||||
[[90m12:00:52 AM[0m] 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
|
||||
[[90m12:01:03 AM[0m] 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
|
||||
[[90m12:01:07 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+10
@@ -221,6 +221,16 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:57 AM[0m] 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"]
|
||||
|
||||
+13
@@ -181,9 +181,15 @@ export function createSomeObject(): SomeObject
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:44 AM[0m] 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
|
||||
[96mApp/app.ts[0m:[93m2[0m:[93m20[0m - [91merror[0m[90m TS2551: [0mProperty 'message' does not exist on type 'SomeObject'. Did you mean 'message2'?
|
||||
|
||||
[7m2[0m createSomeObject().message;
|
||||
@@ -322,9 +328,16 @@ export function createSomeObject(): SomeObject
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/library 1 change:: library.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:01 AM[0m] 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
|
||||
[[90m12:01:17 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+24
@@ -243,9 +243,16 @@ function myFunc() { return 10; }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:54 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:29 AM[0m] 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
|
||||
[[90m12:01:58 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:01:13 AM[0m] 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
|
||||
[[90m12:01:27 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:47 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+40
@@ -445,9 +445,17 @@ export class someClass { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:55 AM[0m] 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
|
||||
[[90m12:01:59 AM[0m] 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
|
||||
[[90m12:02:40 AM[0m] 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
|
||||
[[90m12:02:47 AM[0m] 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
|
||||
[[90m12:03:29 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+12
@@ -445,9 +445,21 @@ function foo() { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:39 AM[0m] 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
|
||||
[[90m12:01:43 AM[0m] 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
|
||||
[[90m12:02:02 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+46
@@ -479,9 +479,19 @@ export class someClass { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:02:08 AM[0m] 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
|
||||
[[90m12:02:12 AM[0m] 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
|
||||
[[90m12:02:56 AM[0m] 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
|
||||
[[90m12:03:03 AM[0m] 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
|
||||
[[90m12:03:48 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+14
@@ -479,9 +479,23 @@ function foo() { }
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/sample1/core 1 change:: index.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:01:43 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+4
@@ -71,9 +71,13 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: tsconfig.json
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:26 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: index.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
|
||||
[[90m12:00:29 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+13
@@ -405,6 +405,9 @@ Output::
|
||||
|
||||
[[90m12:01:19 AM[0m] 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
|
||||
[[90m12:01:29 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -477,6 +480,8 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: alpha.tsconfig.json
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:01:34 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -486,6 +491,11 @@ Output::
|
||||
|
||||
[[90m12:01:38 AM[0m] 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::
|
||||
|
||||
[[90m12:01:42 AM[0m] 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
|
||||
[[90m12:01:43 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+303
@@ -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
|
||||
[[90m12:06:32 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -1848,94 +1850,164 @@ Output::
|
||||
|
||||
[[90m12:06:34 AM[0m] 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
|
||||
[[90m12:06:47 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:06:49 AM[0m] 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
|
||||
[[90m12:06:50 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:06:52 AM[0m] 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
|
||||
[[90m12:06:53 AM[0m] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:06:55 AM[0m] 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
|
||||
[[90m12:06:56 AM[0m] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:06:58 AM[0m] 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
|
||||
[[90m12:06:59 AM[0m] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:01 AM[0m] 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
|
||||
[[90m12:07:02 AM[0m] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:04 AM[0m] 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
|
||||
[[90m12:07:05 AM[0m] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:07 AM[0m] 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
|
||||
[[90m12:07:08 AM[0m] Project 'pkg8/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:10 AM[0m] 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
|
||||
[[90m12:07:11 AM[0m] Project 'pkg9/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:13 AM[0m] 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
|
||||
[[90m12:07:14 AM[0m] Project 'pkg10/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:16 AM[0m] 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
|
||||
[[90m12:07:17 AM[0m] Project 'pkg11/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:19 AM[0m] 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
|
||||
[[90m12:07:20 AM[0m] Project 'pkg12/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:22 AM[0m] 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
|
||||
[[90m12:07:23 AM[0m] Project 'pkg13/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:25 AM[0m] 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
|
||||
[[90m12:07:26 AM[0m] Project 'pkg14/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:28 AM[0m] 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
|
||||
[[90m12:07:29 AM[0m] Project 'pkg15/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:31 AM[0m] 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
|
||||
[[90m12:07:32 AM[0m] Project 'pkg16/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:34 AM[0m] 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
|
||||
[[90m12:07:35 AM[0m] Project 'pkg17/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:37 AM[0m] 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
|
||||
[[90m12:07:38 AM[0m] Project 'pkg18/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:40 AM[0m] 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
|
||||
[[90m12:07:41 AM[0m] Project 'pkg19/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:43 AM[0m] 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
|
||||
[[90m12:07:44 AM[0m] Project 'pkg20/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:46 AM[0m] 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
|
||||
[[90m12:07:47 AM[0m] Project 'pkg21/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:49 AM[0m] 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
|
||||
[[90m12:07:50 AM[0m] Project 'pkg22/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:07:52 AM[0m] 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
|
||||
[[90m12:07:53 AM[0m] 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
|
||||
[[90m12:07:56 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -2382,6 +2456,10 @@ Output::
|
||||
|
||||
[[90m12:07:58 AM[0m] 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::
|
||||
|
||||
[[90m12:08:14 AM[0m] 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
|
||||
[[90m12:08:15 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:16 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:08:18 AM[0m] 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
|
||||
[[90m12:08:19 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:20 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:08:22 AM[0m] 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
|
||||
[[90m12:08:23 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:24 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:08:26 AM[0m] 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
|
||||
[[90m12:08:27 AM[0m] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:28 AM[0m] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
|
||||
|
||||
[[90m12:08:30 AM[0m] 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::
|
||||
|
||||
[[90m12:08:34 AM[0m] 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
|
||||
[[90m12:08:35 AM[0m] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:36 AM[0m] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
|
||||
|
||||
[[90m12:08:38 AM[0m] 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
|
||||
[[90m12:08:39 AM[0m] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:40 AM[0m] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
|
||||
|
||||
[[90m12:08:42 AM[0m] 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
|
||||
[[90m12:08:43 AM[0m] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:44 AM[0m] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
|
||||
|
||||
[[90m12:08:46 AM[0m] 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
|
||||
[[90m12:08:47 AM[0m] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:48 AM[0m] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
|
||||
|
||||
[[90m12:08:50 AM[0m] 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::
|
||||
|
||||
[[90m12:08:54 AM[0m] 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
|
||||
[[90m12:08:55 AM[0m] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:08:56 AM[0m] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
|
||||
|
||||
[[90m12:08:58 AM[0m] 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
|
||||
[[90m12:08:59 AM[0m] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:00 AM[0m] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
|
||||
|
||||
[[90m12:09:02 AM[0m] 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
|
||||
[[90m12:09:03 AM[0m] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:04 AM[0m] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
|
||||
|
||||
[[90m12:09:06 AM[0m] 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
|
||||
[[90m12:09:07 AM[0m] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:08 AM[0m] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
|
||||
|
||||
[[90m12:09:10 AM[0m] 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::
|
||||
|
||||
[[90m12:09:14 AM[0m] 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
|
||||
[[90m12:09:15 AM[0m] Project 'pkg17/tsconfig.json' is out of date because oldest output 'pkg17/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:16 AM[0m] Building project '/user/username/projects/myproject/pkg17/tsconfig.json'...
|
||||
|
||||
[[90m12:09:18 AM[0m] 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
|
||||
[[90m12:09:19 AM[0m] Project 'pkg18/tsconfig.json' is out of date because oldest output 'pkg18/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:20 AM[0m] Building project '/user/username/projects/myproject/pkg18/tsconfig.json'...
|
||||
|
||||
[[90m12:09:22 AM[0m] 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
|
||||
[[90m12:09:23 AM[0m] Project 'pkg19/tsconfig.json' is out of date because oldest output 'pkg19/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:24 AM[0m] Building project '/user/username/projects/myproject/pkg19/tsconfig.json'...
|
||||
|
||||
[[90m12:09:26 AM[0m] 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
|
||||
[[90m12:09:27 AM[0m] Project 'pkg20/tsconfig.json' is out of date because oldest output 'pkg20/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:28 AM[0m] Building project '/user/username/projects/myproject/pkg20/tsconfig.json'...
|
||||
|
||||
[[90m12:09:30 AM[0m] 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::
|
||||
|
||||
[[90m12:09:35 AM[0m] 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
|
||||
[[90m12:09:36 AM[0m] Project 'pkg22/tsconfig.json' is out of date because oldest output 'pkg22/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:09:37 AM[0m] Building project '/user/username/projects/myproject/pkg22/tsconfig.json'...
|
||||
|
||||
[[90m12:09:39 AM[0m] 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
|
||||
[[90m12:09:40 AM[0m] 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
|
||||
[[90m12:09:43 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -3987,6 +4133,10 @@ Output::
|
||||
|
||||
[[90m12:09:45 AM[0m] 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::
|
||||
|
||||
[[90m12:10:01 AM[0m] 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
|
||||
[[90m12:10:02 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:03 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:10:05 AM[0m] 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
|
||||
[[90m12:10:06 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:07 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:10:09 AM[0m] 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
|
||||
[[90m12:10:10 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:11 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:10:13 AM[0m] 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
|
||||
[[90m12:10:14 AM[0m] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:15 AM[0m] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
|
||||
|
||||
[[90m12:10:17 AM[0m] 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::
|
||||
|
||||
[[90m12:10:21 AM[0m] 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
|
||||
[[90m12:10:22 AM[0m] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:23 AM[0m] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
|
||||
|
||||
[[90m12:10:25 AM[0m] 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
|
||||
[[90m12:10:26 AM[0m] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:27 AM[0m] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
|
||||
|
||||
[[90m12:10:29 AM[0m] 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
|
||||
[[90m12:10:30 AM[0m] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:31 AM[0m] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
|
||||
|
||||
[[90m12:10:33 AM[0m] 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
|
||||
[[90m12:10:34 AM[0m] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:10:35 AM[0m] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
|
||||
|
||||
[[90m12:10:37 AM[0m] 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
|
||||
[[90m12:10:40 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -4729,46 +4911,80 @@ Output::
|
||||
|
||||
[[90m12:10:42 AM[0m] 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
|
||||
[[90m12:10:55 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:10:57 AM[0m] 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
|
||||
[[90m12:10:58 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:00 AM[0m] 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
|
||||
[[90m12:11:01 AM[0m] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:03 AM[0m] 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
|
||||
[[90m12:11:04 AM[0m] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:06 AM[0m] 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
|
||||
[[90m12:11:07 AM[0m] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:09 AM[0m] 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
|
||||
[[90m12:11:10 AM[0m] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:12 AM[0m] 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
|
||||
[[90m12:11:13 AM[0m] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:15 AM[0m] 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
|
||||
[[90m12:11:16 AM[0m] Project 'pkg8/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:18 AM[0m] 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
|
||||
[[90m12:11:19 AM[0m] Project 'pkg9/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:21 AM[0m] 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
|
||||
[[90m12:11:22 AM[0m] Project 'pkg10/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:11:24 AM[0m] 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::
|
||||
|
||||
[[90m12:11:28 AM[0m] 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
|
||||
[[90m12:11:29 AM[0m] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:11:30 AM[0m] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
|
||||
|
||||
[[90m12:11:32 AM[0m] 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
|
||||
[[90m12:11:33 AM[0m] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:11:34 AM[0m] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
|
||||
|
||||
[[90m12:11:36 AM[0m] 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
|
||||
[[90m12:11:37 AM[0m] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:11:38 AM[0m] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
|
||||
|
||||
[[90m12:11:40 AM[0m] 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
|
||||
[[90m12:11:41 AM[0m] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:11:42 AM[0m] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
|
||||
|
||||
[[90m12:11:44 AM[0m] 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
|
||||
[[90m12:11:48 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -5281,6 +5514,10 @@ Output::
|
||||
|
||||
[[90m12:11:50 AM[0m] 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::
|
||||
|
||||
[[90m12:12:06 AM[0m] 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
|
||||
[[90m12:12:07 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:08 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:12:10 AM[0m] 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
|
||||
[[90m12:12:11 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:12 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:12:14 AM[0m] 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
|
||||
[[90m12:12:15 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:16 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:12:18 AM[0m] 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
|
||||
[[90m12:12:19 AM[0m] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:20 AM[0m] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
|
||||
|
||||
[[90m12:12:22 AM[0m] 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::
|
||||
|
||||
[[90m12:12:26 AM[0m] 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
|
||||
[[90m12:12:27 AM[0m] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:28 AM[0m] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
|
||||
|
||||
[[90m12:12:30 AM[0m] 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
|
||||
[[90m12:12:31 AM[0m] Project 'pkg8/tsconfig.json' is out of date because oldest output 'pkg8/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:32 AM[0m] Building project '/user/username/projects/myproject/pkg8/tsconfig.json'...
|
||||
|
||||
[[90m12:12:34 AM[0m] 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
|
||||
[[90m12:12:35 AM[0m] Project 'pkg9/tsconfig.json' is out of date because oldest output 'pkg9/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:36 AM[0m] Building project '/user/username/projects/myproject/pkg9/tsconfig.json'...
|
||||
|
||||
[[90m12:12:38 AM[0m] 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
|
||||
[[90m12:12:39 AM[0m] Project 'pkg10/tsconfig.json' is out of date because oldest output 'pkg10/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:40 AM[0m] Building project '/user/username/projects/myproject/pkg10/tsconfig.json'...
|
||||
|
||||
[[90m12:12:42 AM[0m] 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::
|
||||
|
||||
[[90m12:12:46 AM[0m] 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
|
||||
[[90m12:12:47 AM[0m] Project 'pkg12/tsconfig.json' is out of date because oldest output 'pkg12/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:48 AM[0m] Building project '/user/username/projects/myproject/pkg12/tsconfig.json'...
|
||||
|
||||
[[90m12:12:50 AM[0m] 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
|
||||
[[90m12:12:51 AM[0m] Project 'pkg13/tsconfig.json' is out of date because oldest output 'pkg13/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:52 AM[0m] Building project '/user/username/projects/myproject/pkg13/tsconfig.json'...
|
||||
|
||||
[[90m12:12:54 AM[0m] 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
|
||||
[[90m12:12:55 AM[0m] Project 'pkg14/tsconfig.json' is out of date because oldest output 'pkg14/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:12:56 AM[0m] Building project '/user/username/projects/myproject/pkg14/tsconfig.json'...
|
||||
|
||||
[[90m12:12:58 AM[0m] 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
|
||||
[[90m12:12:59 AM[0m] Project 'pkg15/tsconfig.json' is out of date because oldest output 'pkg15/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:00 AM[0m] Building project '/user/username/projects/myproject/pkg15/tsconfig.json'...
|
||||
|
||||
[[90m12:13:02 AM[0m] 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::
|
||||
|
||||
[[90m12:13:06 AM[0m] 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
|
||||
[[90m12:13:07 AM[0m] Project 'pkg17/tsconfig.json' is out of date because oldest output 'pkg17/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:08 AM[0m] Building project '/user/username/projects/myproject/pkg17/tsconfig.json'...
|
||||
|
||||
[[90m12:13:10 AM[0m] 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
|
||||
[[90m12:13:11 AM[0m] Project 'pkg18/tsconfig.json' is out of date because oldest output 'pkg18/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:12 AM[0m] Building project '/user/username/projects/myproject/pkg18/tsconfig.json'...
|
||||
|
||||
[[90m12:13:14 AM[0m] 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
|
||||
[[90m12:13:15 AM[0m] Project 'pkg19/tsconfig.json' is out of date because oldest output 'pkg19/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:16 AM[0m] Building project '/user/username/projects/myproject/pkg19/tsconfig.json'...
|
||||
|
||||
[[90m12:13:18 AM[0m] 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
|
||||
[[90m12:13:19 AM[0m] Project 'pkg20/tsconfig.json' is out of date because oldest output 'pkg20/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:20 AM[0m] Building project '/user/username/projects/myproject/pkg20/tsconfig.json'...
|
||||
|
||||
[[90m12:13:22 AM[0m] 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::
|
||||
|
||||
[[90m12:13:26 AM[0m] 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
|
||||
[[90m12:13:27 AM[0m] Project 'pkg22/tsconfig.json' is out of date because oldest output 'pkg22/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:13:28 AM[0m] Building project '/user/username/projects/myproject/pkg22/tsconfig.json'...
|
||||
|
||||
[[90m12:13:30 AM[0m] 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
|
||||
[[90m12:13:31 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+24
@@ -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
|
||||
[[90m12:01:12 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -288,14 +290,24 @@ Output::
|
||||
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:27 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:01:29 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:01:32 AM[0m] 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
|
||||
[[90m12:01:33 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -442,6 +456,10 @@ Output::
|
||||
|
||||
[[90m12:01:38 AM[0m] 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::
|
||||
|
||||
[[90m12:01:54 AM[0m] 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
|
||||
[[90m12:01:55 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:01:56 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:01:58 AM[0m] 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
|
||||
[[90m12:01:59 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+36
@@ -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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -444,22 +446,38 @@ Output::
|
||||
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:59 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:01 AM[0m] 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
|
||||
[[90m12:02:02 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:04 AM[0m] 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
|
||||
[[90m12:02:05 AM[0m] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:07 AM[0m] 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
|
||||
[[90m12:02:08 AM[0m] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:10 AM[0m] 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
|
||||
[[90m12:02:11 AM[0m] 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
|
||||
[[90m12:02:14 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -636,6 +656,10 @@ Output::
|
||||
|
||||
[[90m12:02:16 AM[0m] 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::
|
||||
|
||||
[[90m12:02:32 AM[0m] 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
|
||||
[[90m12:02:33 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:02:34 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:02:36 AM[0m] 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
|
||||
[[90m12:02:37 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:02:38 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:02:40 AM[0m] 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
|
||||
[[90m12:02:41 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:02:42 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:02:44 AM[0m] 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
|
||||
[[90m12:02:45 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+102
@@ -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
|
||||
[[90m12:02:32 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -678,34 +680,59 @@ Output::
|
||||
|
||||
[[90m12:02:34 AM[0m] 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
|
||||
[[90m12:02:47 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:49 AM[0m] 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
|
||||
[[90m12:02:50 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:52 AM[0m] 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
|
||||
[[90m12:02:53 AM[0m] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:55 AM[0m] 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
|
||||
[[90m12:02:56 AM[0m] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:02:58 AM[0m] 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
|
||||
[[90m12:02:59 AM[0m] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:03:01 AM[0m] 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
|
||||
[[90m12:03:02 AM[0m] Project 'pkg6/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:03:04 AM[0m] 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
|
||||
[[90m12:03:05 AM[0m] Project 'pkg7/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:03:07 AM[0m] 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
|
||||
[[90m12:03:08 AM[0m] 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
|
||||
[[90m12:03:11 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -927,6 +956,10 @@ Output::
|
||||
|
||||
[[90m12:03:13 AM[0m] 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::
|
||||
|
||||
[[90m12:03:29 AM[0m] 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
|
||||
[[90m12:03:30 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:03:31 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:03:33 AM[0m] 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
|
||||
[[90m12:03:34 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:03:35 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:03:37 AM[0m] 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
|
||||
[[90m12:03:38 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:03:39 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:03:41 AM[0m] 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
|
||||
[[90m12:03:42 AM[0m] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:03:43 AM[0m] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
|
||||
|
||||
[[90m12:03:45 AM[0m] 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::
|
||||
|
||||
[[90m12:03:49 AM[0m] 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
|
||||
[[90m12:03:50 AM[0m] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:03:51 AM[0m] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
|
||||
|
||||
[[90m12:03:53 AM[0m] 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
|
||||
[[90m12:03:54 AM[0m] 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
|
||||
[[90m12:03:57 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -1404,6 +1460,10 @@ Output::
|
||||
|
||||
[[90m12:03:59 AM[0m] 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::
|
||||
|
||||
[[90m12:04:16 AM[0m] 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
|
||||
[[90m12:04:17 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:04:18 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:04:20 AM[0m] 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
|
||||
[[90m12:04:21 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:04:22 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:04:24 AM[0m] 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
|
||||
[[90m12:04:25 AM[0m] Project 'pkg4/tsconfig.json' is out of date because oldest output 'pkg4/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:04:26 AM[0m] Building project '/user/username/projects/myproject/pkg4/tsconfig.json'...
|
||||
|
||||
[[90m12:04:28 AM[0m] 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
|
||||
[[90m12:04:29 AM[0m] Project 'pkg5/tsconfig.json' is out of date because oldest output 'pkg5/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:04:30 AM[0m] Building project '/user/username/projects/myproject/pkg5/tsconfig.json'...
|
||||
|
||||
[[90m12:04:32 AM[0m] 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
|
||||
[[90m12:04:35 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -1710,26 +1787,45 @@ Output::
|
||||
|
||||
[[90m12:04:37 AM[0m] 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
|
||||
[[90m12:04:50 AM[0m] Project 'pkg1/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:04:52 AM[0m] 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
|
||||
[[90m12:04:53 AM[0m] Project 'pkg2/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:04:55 AM[0m] 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
|
||||
[[90m12:04:56 AM[0m] Project 'pkg3/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:04:58 AM[0m] 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
|
||||
[[90m12:04:59 AM[0m] Project 'pkg4/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:05:01 AM[0m] 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
|
||||
[[90m12:05:02 AM[0m] Project 'pkg5/tsconfig.json' is up to date with .d.ts files from its dependencies
|
||||
|
||||
[[90m12:05:04 AM[0m] 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::
|
||||
|
||||
[[90m12:05:08 AM[0m] 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
|
||||
[[90m12:05:09 AM[0m] Project 'pkg7/tsconfig.json' is out of date because oldest output 'pkg7/index.js' is older than newest input 'pkg0/tsconfig.json'
|
||||
|
||||
[[90m12:05:10 AM[0m] Building project '/user/username/projects/myproject/pkg7/tsconfig.json'...
|
||||
|
||||
[[90m12:05:12 AM[0m] 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
|
||||
[[90m12:05:13 AM[0m] 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
|
||||
[[90m12:00:55 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
@@ -263,12 +265,19 @@ Output::
|
||||
|
||||
[[90m12:00:57 AM[0m] 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
|
||||
[[90m12:01:10 AM[0m] Project 'webpack/tsconfig.json' is out of date because oldest output 'webpack/index.js' is older than newest input 'shared/tsconfig.json'
|
||||
|
||||
[[90m12:01:11 AM[0m] Building project '/user/username/projects/myproject/webpack/tsconfig.json'...
|
||||
|
||||
[[90m12:01:13 AM[0m] 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
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:07 AM[0m] 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
|
||||
[[90m12:01:34 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+7
@@ -229,24 +229,28 @@ Output::
|
||||
|
||||
[[90m12:01:13 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
|
||||
[[90m12:01:14 AM[0m] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:15 AM[0m] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
[[90m12:01:17 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
|
||||
[[90m12:01:18 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:19 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:01:21 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
|
||||
[[90m12:01:22 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:23 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:01:25 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
|
||||
[[90m12:01:26 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -411,18 +415,21 @@ Output::
|
||||
|
||||
[[90m12:01:39 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
|
||||
[[90m12:01:40 AM[0m] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:41 AM[0m] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
[[90m12:01:43 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
|
||||
[[90m12:01:44 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:45 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:01:47 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
|
||||
[[90m12:01:48 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+7
@@ -232,24 +232,28 @@ Output::
|
||||
|
||||
[[90m12:01:13 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
|
||||
[[90m12:01:14 AM[0m] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:15 AM[0m] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
[[90m12:01:17 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
|
||||
[[90m12:01:18 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:19 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:01:21 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
|
||||
[[90m12:01:22 AM[0m] Project 'pkg3/tsconfig.json' is out of date because oldest output 'pkg3/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:23 AM[0m] Building project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
[[90m12:01:25 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg3/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg3 1 change:: index.js
|
||||
[[90m12:01:26 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -419,18 +423,21 @@ Output::
|
||||
|
||||
[[90m12:01:39 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg0/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg0 1 change:: index.js
|
||||
[[90m12:01:40 AM[0m] Project 'pkg1/tsconfig.json' is out of date because oldest output 'pkg1/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:41 AM[0m] Building project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
[[90m12:01:43 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg1/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg1 1 change:: index.js
|
||||
[[90m12:01:44 AM[0m] Project 'pkg2/tsconfig.json' is out of date because oldest output 'pkg2/index.js' is older than newest input 'typings/xterm.d.ts'
|
||||
|
||||
[[90m12:01:45 AM[0m] Building project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
[[90m12:01:47 AM[0m] Updating unchanged output timestamps of project '/user/username/projects/myproject/pkg2/tsconfig.json'...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject/pkg2 1 change:: index.js
|
||||
[[90m12:01:48 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+2
@@ -71,8 +71,10 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.ts
|
||||
[[90m12:00:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.js
|
||||
[[90m12:00:23 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+2
@@ -70,8 +70,10 @@ Input::
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.ts
|
||||
[[90m12:00:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: 1 change:: f.js
|
||||
[[90m12:00:23 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+6
@@ -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
|
||||
[[90m12:00:28 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /home/username/project/app 1 change:: file.js
|
||||
[[90m12:00:32 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+9
@@ -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
|
||||
[[90m12:00:29 AM[0m] 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
|
||||
[[90m12:00:39 AM[0m] 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
|
||||
[[90m12:00:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f1.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: f2.js
|
||||
[[90m12:00:49 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+3
@@ -139,9 +139,12 @@ export var T: number;export function Foo() { };
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:38 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
|
||||
[96ma/b/globalFile3.ts[0m:[93m1[0m:[93m1[0m - [91merror[0m[90m TS1208: [0m'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.
|
||||
|
||||
[7m1[0m interface GlobalFoo { age: number }
|
||||
|
||||
+3
@@ -138,9 +138,12 @@ export var T: number;export function Foo() { };
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: out.js
|
||||
[[90m12:00:34 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+6
@@ -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
|
||||
[[90m12:00:39 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
|
||||
[[90m12:00:46 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+9
@@ -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
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[[90m12:00:52 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+21
@@ -134,9 +134,12 @@ export let y = Foo();
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:38 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
|
||||
[96ma/b/file1Consumer1.ts[0m:[93m1[0m:[93m16[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Foo'.
|
||||
|
||||
[7m1[0m 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
|
||||
[[90m12:00:46 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer2.js
|
||||
[96ma/b/file1Consumer1.ts[0m:[93m1[0m:[93m16[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Foo'.
|
||||
|
||||
[7m1[0m 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
|
||||
[[90m12:00:57 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
|
||||
[[90m12:01:01 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[96ma/b/file1Consumer1.ts[0m:[93m1[0m:[93m9[0m - [91merror[0m[90m TS2305: [0mModule '"./moduleFile1"' has no exported member 'Foo'.
|
||||
|
||||
[7m1[0m 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
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:33 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+8
@@ -134,9 +134,14 @@ export var T: number;export function Foo() { };
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:38 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:00:52 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: moduleFile1.js
|
||||
[96ma/b/moduleFile1.ts[0m:[93m1[0m:[93m46[0m - [91merror[0m[90m TS2584: [0mCannot find name 'console'. Do you need to change your target library? Try changing the 'lib' compiler option to include 'dom'.
|
||||
|
||||
[7m1[0m export var T: number;export function Foo() { console.log('hi'); };
|
||||
|
||||
+9
@@ -92,9 +92,12 @@ export var x = Foo();export var yy = Foo();
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:21 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.js
|
||||
[96ma/b/referenceFile1.ts[0m:[93m1[0m:[93m22[0m - [91merror[0m[90m TS6053: [0mFile '/a/b/moduleFile2.ts' not found.
|
||||
|
||||
[7m1[0m /// <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
|
||||
[[90m12:00:28 AM[0m] 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
|
||||
[96ma/b/referenceFile1.ts[0m:[93m2[0m:[93m16[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Foo'.
|
||||
|
||||
[7m2[0m export var x = Foo();export var yy = Foo();
|
||||
|
||||
+4
@@ -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
|
||||
[[90m12:00:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: referenceFile1.js
|
||||
[96ma/b/referenceFile1.ts[0m:[93m1[0m:[93m22[0m - [91merror[0m[90m TS6053: [0mFile '/a/b/moduleFile1.ts' not found.
|
||||
|
||||
[7m1[0m /// <reference path="./moduleFile1.ts" />
|
||||
|
||||
+7
@@ -134,9 +134,16 @@ interface GlobalFoo { age: number }var T2: string;
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: globalFile3.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:37 AM[0m] 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
|
||||
[[90m12:00:53 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+16
@@ -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
|
||||
[[90m12:00:41 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1Consumer1Consumer1.js
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:00:52 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[[90m12:01:21 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+4
@@ -97,9 +97,13 @@ export var t1 = 10;export var t3 = 10;
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file1.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/b 1 change:: file2.js
|
||||
[[90m12:00:32 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+8
@@ -86,9 +86,13 @@ let x = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: b.js
|
||||
[[90m12:00:31 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -144,9 +148,13 @@ let xy = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:35 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: b.js
|
||||
[[90m12:00:42 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+6
@@ -77,9 +77,12 @@ let x = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:22 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
|
||||
[[90m12:00:26 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -130,9 +133,12 @@ let xy = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
|
||||
[[90m12:00:34 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+6
@@ -77,9 +77,12 @@ let x = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:22 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
|
||||
[[90m12:00:26 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
@@ -130,9 +133,12 @@ let xy = 11
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /a 1 change:: out.js
|
||||
[[90m12:00:34 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+2
@@ -86,6 +86,8 @@ var zz30 = 100;
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /a/rootfolder/project/scripts 1 rename:: TypeScript.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:34 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+11
@@ -40,6 +40,8 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] Starting compilation in watch mode...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
|
||||
[[90m12:00:28 AM[0m] 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
|
||||
[[90m12:00:32 AM[0m] 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
|
||||
[[90m12:00:37 AM[0m] 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
|
||||
[[90m12:00:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+13
@@ -134,9 +134,14 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m 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
|
||||
[[90m12:00:50 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m 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
|
||||
[[90m12:01:01 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
|
||||
+15
@@ -184,9 +184,16 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:44 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] 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
|
||||
[[90m12:01:11 AM[0m] 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
|
||||
[[90m12:01:15 AM[0m] 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
|
||||
[[90m12:01:22 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -373,6 +394,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+27
@@ -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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[[90m12:00:41 AM[0m] 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
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:21 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+13
@@ -40,6 +40,10 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:30 AM[0m] 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
|
||||
[[90m12:00:34 AM[0m] 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
|
||||
[[90m12:00:39 AM[0m] 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
|
||||
[[90m12:00:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+18
@@ -151,9 +151,15 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[[90m12:00:55 AM[0m] 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
|
||||
[[90m12:00:59 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:16 AM[0m] 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
|
||||
[[90m12:01:29 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+18
@@ -214,9 +214,15 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:54 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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
|
||||
[[90m12:01:11 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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
|
||||
[[90m12:01:28 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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'.
|
||||
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -389,6 +416,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+34
@@ -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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[[90m12:00:41 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] 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
|
||||
[[90m12:01:26 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+11
@@ -40,6 +40,8 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] Starting compilation in watch mode...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 rename:: a.js
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change::
|
||||
[[90m12:00:28 AM[0m] 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
|
||||
[[90m12:00:32 AM[0m] 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
|
||||
[[90m12:00:37 AM[0m] 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
|
||||
[[90m12:00:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+13
@@ -134,9 +134,14 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m 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
|
||||
[[90m12:00:50 AM[0m] 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
|
||||
[[90m12:00:57 AM[0m] 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
|
||||
[[90m12:01:01 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
|
||||
+15
@@ -184,9 +184,16 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:44 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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
|
||||
[[90m12:01:15 AM[0m] 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
|
||||
[[90m12:01:22 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -377,6 +398,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] 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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[[90m12:00:41 AM[0m] 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
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/src/main.js
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:21 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+19
@@ -40,6 +40,10 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:30 AM[0m] 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
|
||||
[[90m12:00:34 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m 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
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[[90m12:00:46 AM[0m] 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
|
||||
[[90m12:00:50 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
|
||||
+21
@@ -151,9 +151,16 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[[90m12:01:18 AM[0m] 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
|
||||
[[90m12:01:22 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
|
||||
+24
@@ -214,9 +214,17 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:54 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] 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
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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
|
||||
[[90m12:01:40 AM[0m] 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
|
||||
[[90m12:01:59 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -387,6 +414,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+34
@@ -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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[[90m12:00:41 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] 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
|
||||
[[90m12:01:26 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+27
@@ -40,8 +40,14 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:30 AM[0m] 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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[[90m12:00:47 AM[0m] 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
|
||||
[[90m12:00:51 AM[0m] 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
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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"]
|
||||
|
||||
+19
@@ -203,9 +203,15 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -213,6 +219,7 @@ Output::
|
||||
|
||||
[[90m12:00:53 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -371,6 +383,7 @@ Output::
|
||||
|
||||
[[90m12:01:10 AM[0m] 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
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -526,6 +544,7 @@ Output::
|
||||
|
||||
[[90m12:01:27 AM[0m] 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"]
|
||||
|
||||
+21
@@ -328,11 +328,20 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:07 AM[0m] 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
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:41 AM[0m] 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"]
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -373,6 +394,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -373,6 +394,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+29
@@ -40,8 +40,16 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:32 AM[0m] 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
|
||||
[[90m12:00:38 AM[0m] 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
|
||||
[[90m12:00:42 AM[0m] 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
|
||||
[[90m12:00:49 AM[0m] 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
|
||||
[[90m12:00:53 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[[90m12:01:04 AM[0m] 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"]
|
||||
|
||||
+24
@@ -218,11 +218,19 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:46 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[[90m12:01:09 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:32 AM[0m] 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
|
||||
[[90m12:01:48 AM[0m] 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"]
|
||||
|
||||
+24
@@ -356,9 +356,16 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[[90m12:01:21 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:02:00 AM[0m] 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"]
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -389,6 +416,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -389,6 +416,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+27
@@ -40,8 +40,14 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:30 AM[0m] 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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -185,6 +196,8 @@ Output::
|
||||
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[[90m12:00:47 AM[0m] 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
|
||||
[[90m12:00:51 AM[0m] 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
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -458,6 +483,8 @@ Output::
|
||||
|
||||
[[90m12:01:02 AM[0m] 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"]
|
||||
|
||||
+19
@@ -200,9 +200,15 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -210,6 +216,7 @@ Output::
|
||||
|
||||
[[90m12:00:53 AM[0m] 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
|
||||
[[90m12:01:00 AM[0m] 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
|
||||
[[90m12:01:10 AM[0m] 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
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -505,6 +523,7 @@ Output::
|
||||
|
||||
[[90m12:01:27 AM[0m] 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"]
|
||||
|
||||
+21
@@ -325,11 +325,20 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:07 AM[0m] 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
|
||||
[[90m12:01:14 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:01:24 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:41 AM[0m] 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"]
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -377,6 +398,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -377,6 +398,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+35
@@ -40,8 +40,16 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:32 AM[0m] 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
|
||||
[[90m12:00:38 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -189,6 +204,8 @@ Output::
|
||||
|
||||
[[90m12:00:45 AM[0m] 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
|
||||
[[90m12:00:52 AM[0m] 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
|
||||
[[90m12:00:59 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -464,6 +497,8 @@ Output::
|
||||
|
||||
[[90m12:01:13 AM[0m] 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"]
|
||||
|
||||
+27
@@ -217,9 +217,17 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:46 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -227,6 +235,7 @@ Output::
|
||||
|
||||
[[90m12:01:05 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:38 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -540,6 +566,7 @@ Output::
|
||||
|
||||
[[90m12:01:57 AM[0m] 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"]
|
||||
|
||||
+30
@@ -355,11 +355,21 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[[90m12:01:20 AM[0m] 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
|
||||
[[90m12:01:27 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:01:49 AM[0m] 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
|
||||
[[90m12:01:56 AM[0m] 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
|
||||
[[90m12:02:18 AM[0m] 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"]
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -387,6 +414,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+38
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:12 AM[0m] 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
|
||||
[[90m12:01:19 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -387,6 +414,7 @@ Output::
|
||||
|
||||
[[90m12:01:23 AM[0m] 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
|
||||
[[90m12:01:31 AM[0m] 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
|
||||
[[90m12:01:36 AM[0m] 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
|
||||
[[90m12:01:46 AM[0m] 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
|
||||
[[90m12:01:53 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
+27
@@ -40,8 +40,14 @@ Output::
|
||||
>> Screen clear
|
||||
[[90m12:00:25 AM[0m] 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::
|
||||
[[90m12:00:30 AM[0m] 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
|
||||
[[90m12:00:36 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -185,6 +196,8 @@ Output::
|
||||
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[[90m12:00:47 AM[0m] 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
|
||||
[[90m12:00:51 AM[0m] 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
|
||||
[[90m12:00:58 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -458,6 +483,8 @@ Output::
|
||||
|
||||
[[90m12:01:02 AM[0m] 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"]
|
||||
|
||||
+15
@@ -200,9 +200,13 @@ export class C
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: c.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:40 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -210,6 +214,7 @@ Output::
|
||||
|
||||
[[90m12:00:47 AM[0m] 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
|
||||
[[90m12:00:54 AM[0m] 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
|
||||
[[90m12:01:01 AM[0m] 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
|
||||
[[90m12:01:08 AM[0m] 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
|
||||
[96ma.ts[0m:[93m4[0m:[93m17[0m - [91merror[0m[90m TS2339: [0mProperty 'd' does not exist on type 'C'.
|
||||
|
||||
[7m4[0m console.log(b.c.d);
|
||||
@@ -505,6 +519,7 @@ Output::
|
||||
|
||||
[[90m12:01:15 AM[0m] 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"]
|
||||
|
||||
+15
@@ -325,11 +325,16 @@ export interface Coords {
|
||||
|
||||
|
||||
Output::
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/myproject 1 change:: a.ts
|
||||
|
||||
>> Screen clear
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:00:55 AM[0m] 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
|
||||
[[90m12:01:02 AM[0m] 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
|
||||
[96mc.ts[0m:[93m6[0m:[93m13[0m - [91merror[0m[90m TS2322: [0mType '{ 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::
|
||||
|
||||
[[90m12:01:09 AM[0m] 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
|
||||
[[90m12:01:16 AM[0m] 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
|
||||
[[90m12:01:23 AM[0m] 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"]
|
||||
|
||||
+31
@@ -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
|
||||
[[90m12:00:43 AM[0m] 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
|
||||
[[90m12:00:48 AM[0m] 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
|
||||
[[90m12:01:06 AM[0m] 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
|
||||
[[90m12:01:13 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
sysLog:: watchPresentFileSystemEntry:: /user/username/projects/noemitonerror 1 change:: dev-build/tsconfig.tsbuildinfo
|
||||
[96msrc/main.ts[0m:[93m2[0m:[93m7[0m - [91merror[0m[90m TS2322: [0mType 'number' is not assignable to type 'string'.
|
||||
|
||||
[7m2[0m const a: string = 10;
|
||||
@@ -371,6 +392,7 @@ Output::
|
||||
|
||||
[[90m12:01:17 AM[0m] 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
|
||||
[[90m12:01:25 AM[0m] 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
|
||||
[[90m12:01:30 AM[0m] 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
|
||||
[[90m12:01:37 AM[0m] 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
|
||||
[[90m12:01:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user