Skip to content

Instantly share code, notes, and snippets.

@jakebailey
Created April 29, 2024 17:40
Show Gist options
  • Save jakebailey/4ad4ce74fbd86e9588a5775e9c89fe2e to your computer and use it in GitHub Desktop.
Save jakebailey/4ad4ce74fbd86e9588a5775e9c89fe2e to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
Info 0 [10:32:22.509] Starting TS Server
Info 1 [10:32:22.509] Version: 5.5.0-dev.20240424
Info 2 [10:32:22.509] Arguments: /home/jabaile/.vscode-server/bin/e170252f762678dec6ca2cc69aba1570769a5d39/node /home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/tsserver.js --useInferredProjectPerProjectRoot --enableTelemetry --cancellationPipeName /tmp/vscode-typescript1000/58c20e442463eb20e43e/tscancellation-1af090b9d54714db692e.tmp* --logVerbosity verbose --logFile /home/jabaile/.vscode-server/data/logs/20240426T194823/exthost2/vscode.typescript-language-features/tsserver-log-xyjRBh/tsserver.log --locale en --noGetErrOnBackgroundUpdate --validateDefaultNpmLocation --useNodeIpc
Info 3 [10:32:22.509] Platform: linux NodeVersion: v18.18.2 CaseSensitive: true
Info 4 [10:32:22.509] ServerMode: undefined hasUnknownServerMode: undefined
Info 5 [10:32:22.514] Binding...
Info 6 [10:32:22.519] request:
{
"seq": 0,
"type": "request",
"command": "configure",
"arguments": {
"hostInfo": "vscode",
"preferences": {
"providePrefixAndSuffixTextForRename": true,
"allowRenameOfImportPath": true,
"includePackageJsonAutoImports": "auto",
"excludeLibrarySymbolsInNavTo": true
},
"watchOptions": {}
}
}
Info 7 [10:32:22.519] Host information vscode
Info 8 [10:32:22.519] Host watch options changed to undefined, it will be take effect for next watches.
Info 9 [10:32:22.519] response:
{"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 10 [10:32:22.520] 0::configure: async elapsed time (in milliseconds) 1.1232
Info 11 [10:32:22.520] request:
{
"seq": 1,
"type": "request",
"command": "compilerOptionsForInferredProjects",
"arguments": {
"options": {
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2020",
"jsx": "react",
"allowImportingTsExtensions": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"sourceMap": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowNonTsExtensions": true,
"resolveJsonModule": true
}
}
}
Perf 12 [10:32:22.520] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.2721
Info 13 [10:32:22.520] response:
{"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 14 [10:32:22.520] request:
{
"seq": 2,
"type": "request",
"command": "updateOpen",
"arguments": {
"changedFiles": [],
"closedFiles": [],
"openFiles": [
{
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"fileContent": "function isPreloading(): boolean {\n if ((module as any).isPreloading !== undefined) {\n // >=v14.17.0\n return (module as any).isPreloading;\n }\n\n return module.parent?.id === \"internal/preload\";\n}\n\nfunction exitError(message: string): never {\n console.error(\"pprof-it: \" + message);\n process.exit(1);\n}\n\nif (!isPreloading()) {\n exitError(\"pprof-it must be required using the --require flag\");\n}\n\nimport assert from \"node:assert\";\nimport fs from \"node:fs\";\nimport path from \"node:path\";\nimport { isMainThread } from \"node:worker_threads\";\n\nimport * as pprof from \"@datadog/pprof\";\nimport { serializeTimeProfile } from \"@datadog/pprof/out/src/profile-serializer\";\nimport { TimeProfilerOptions } from \"@datadog/pprof/out/src/time-profiler\";\nimport { TimeProfiler as PProfTimeProfiler } from \"@datadog/pprof/out/src/time-profiler-bindings\";\nimport { Profile } from \"pprof-format\";\nimport { onExit as signalExit } from \"signal-exit\";\n\nenum ProfilerName {\n Heap = \"heap\",\n Time = \"time\",\n}\n\nnamespace Options {\n function parseEnvInt(envName: string): number | undefined {\n const v = process.env[envName];\n if (!v) {\n return undefined;\n }\n\n const x = Number.parseInt(v);\n if (Number.isNaN(x)) {\n exitError(`invalid value ${envName}=${v}`);\n }\n return x;\n }\n\n function parseEnvBoolean(envName: string): boolean | undefined {\n const v = process.env[envName];\n if (!v) {\n return undefined;\n }\n\n switch (v.toLowerCase()) {\n case \"1\":\n case \"true\":\n case \"yes\":\n case \"on\":\n return true;\n case \"0\":\n case \"false\":\n case \"no\":\n case \"off\":\n return false;\n default:\n exitError(`invalid value ${envName}=${v}`);\n }\n }\n\n function tryStat(p: string) {\n try {\n return fs.statSync(p);\n } catch {\n return undefined;\n }\n }\n\n function assertExistsAndDir(p: string) {\n const stat = tryStat(p);\n if (!stat) {\n exitError(`${p} does not exist`);\n }\n if (!stat.isDirectory()) {\n exitError(`${p} is not a directory`);\n }\n }\n\n function parseEnvDir(envName: string): string | undefined {\n const p = process.env[envName];\n if (!p) {\n return undefined;\n }\n\n assertExistsAndDir(p);\n return p;\n }\n\n function parseOutputPath(envName: string, defaultFilename: string): string {\n const p = path.resolve(outDir, process.env[envName] || \"\");\n\n if (tryStat(p)?.isDirectory()) {\n return path.join(p, defaultFilename);\n }\n\n assertExistsAndDir(path.dirname(p));\n return p;\n }\n\n const allProfilers = new Set(Object.values(ProfilerName));\n function isProfilerName(s: string): s is ProfilerName {\n return allProfilers.has(s as any);\n }\n\n function parseEnvProfilers(envName: string): Set<ProfilerName> | undefined {\n const v = process.env[envName];\n if (!v) {\n return undefined;\n }\n\n const profilers = new Set<ProfilerName>();\n for (const x of v.split(\",\").filter(Boolean)) {\n if (isProfilerName(x)) {\n profilers.add(x);\n } else {\n exitError(`unknown profiler \"${x}\"`);\n }\n }\n\n return profilers.size > 0 ? profilers : undefined;\n }\n\n export const profilers = parseEnvProfilers(\"PPROF_PROFILERS\") ?? allProfilers;\n export const outDir = parseEnvDir(\"PPROF_OUT\") ?? process.cwd();\n export const sanitize = parseEnvBoolean(\"PPROF_SANITIZE\") ?? false;\n export const lineNumbers = parseEnvBoolean(\"PPROF_LINE_NUMBERS\") ?? true;\n export const heapOut = parseOutputPath(\"PPROF_HEAP_OUT\", `pprof-heap-${process.pid}.pb.gz`);\n export const heapInterval = parseEnvInt(\"PPROF_HEAP_INTERVAL\") ?? 512 * 1024;\n export const heapStackDepth = parseEnvInt(\"PPROF_HEAP_STACK_DEPTH\") ?? 64;\n export const timeOut = parseOutputPath(\"PPROF_TIME_OUT\", `pprof-time-${process.pid}.pb.gz`);\n export const timeInterval = parseEnvInt(\"PPROF_TIME_INTERVAL\") ?? 1000;\n export const signalExit = parseEnvBoolean(\"PPROF_SIGNAL_EXIT\") ?? true;\n export const logging = parseEnvBoolean(\"PPROF_LOGGING\") ?? true;\n}\n\nfunction log(message: string): void {\n if (Options.logging) {\n console.error(\"pprof-it: \" + message);\n }\n}\n\nconst cwdPrefix = process.cwd() + path.sep;\n\nfunction prettierPath(p: string) {\n if (p.startsWith(cwdPrefix)) {\n return p.slice(cwdPrefix.length);\n }\n return p;\n}\n\nfunction assertNever(x: never): never {\n throw new Error(`Unexpected object: ${x}`);\n}\n\nconst sanitizedNames = new Map<string, string>();\nfunction sanitize(s: string): string {\n let sanitized = sanitizedNames.get(s);\n if (sanitized === undefined) {\n sanitized = `SANITIZED_${sanitizedNames.size}`;\n log(`Sanitizing \"${s}\" to \"${sanitized}\"`);\n sanitizedNames.set(s, sanitized);\n }\n return sanitized;\n}\n\nabstract class Profiler {\n private _profile?: Profile;\n\n constructor(private _name: ProfilerName, private _profilePath: string) {}\n\n abstract start(): void;\n\n protected abstract _stop(): Profile;\n\n stop(): void {\n this._profile = this._stop();\n }\n\n sanitize(): void {\n assert(this._profile);\n\n const ids = new Set<number>();\n\n // All samples/locations are rooted at functions, which contain\n // the string IDs of the filename.\n assert(this._profile.function);\n for (const f of this._profile.function) {\n const filename = f.filename;\n if (filename) {\n if (typeof filename === \"number\") {\n ids.add(filename);\n } else {\n throw new TypeError(`unsupported filename ${filename}`);\n }\n }\n }\n\n assert(this._profile.stringTable);\n for (const index of ids.values()) {\n const p = this._profile.stringTable.strings[index];\n // Paths to the parts of the standard library that are implemented\n // in JavaScript are relative; other paths are absolute.\n if (p && path.isAbsolute(p)) {\n this._profile.stringTable.strings[index] = sanitize(p);\n }\n }\n }\n\n write(): void {\n assert(this._profile);\n log(`Writing ${this._name} profile to ${prettierPath(this._profilePath)}`);\n const buffer = pprof.encodeSync(this._profile);\n fs.writeFileSync(this._profilePath, buffer);\n }\n}\n\nclass HeapProfiler extends Profiler {\n constructor() {\n super(ProfilerName.Heap, Options.heapOut);\n }\n\n start(): void {\n pprof.heap.start(Options.heapInterval, Options.heapStackDepth);\n }\n\n protected _stop(): Profile {\n return pprof.heap.profile();\n }\n}\n\nconst DEFAULT_INTERVAL_MICROS = 1000;\nconst DEFAULT_DURATION_MILLIS = 60_000;\n\nconst DEFAULT_OPTIONS: TimeProfilerOptions = {\n durationMillis: DEFAULT_DURATION_MILLIS,\n intervalMicros: DEFAULT_INTERVAL_MICROS,\n lineNumbers: false,\n withContexts: false,\n workaroundV8Bug: true,\n collectCpuTime: false,\n};\n\nclass TimeProfiler extends Profiler {\n private _timeProfiler: typeof PProfTimeProfiler;\n\n constructor() {\n super(ProfilerName.Time, Options.timeOut);\n }\n\n start(): void {\n const options: TimeProfilerOptions = {\n ...DEFAULT_OPTIONS,\n intervalMicros: Options.timeInterval,\n lineNumbers: Options.lineNumbers,\n };\n\n this._timeProfiler = new PProfTimeProfiler({ ...options, isMainThread });\n this._timeProfiler.start();\n }\n\n protected _stop(): Profile {\n const profile = this._timeProfiler.stop(false);\n\n const serialized_profile = serializeTimeProfile(\n profile,\n Options.timeInterval,\n /*gSourceMapper*/ undefined,\n true,\n /*generateLabels*/ undefined,\n );\n\n return serialized_profile;\n }\n}\n\nfunction onExit(fn: () => void) {\n if (Options.signalExit) {\n signalExit(fn);\n } else {\n process.on(\"exit\", fn);\n }\n}\n\nconst profilers: Profiler[] = [];\n\nfor (const x of Options.profilers) {\n switch (x) {\n case ProfilerName.Heap:\n profilers.push(new HeapProfiler());\n break;\n case ProfilerName.Time:\n profilers.push(new TimeProfiler());\n break;\n default:\n assertNever(x);\n }\n}\n\nif (profilers.length > 0) {\n log(`Starting profilers (${[...Options.profilers.values()].join(\", \")})`);\n for (const p of profilers) {\n p.start();\n }\n\n onExit(() => {\n log(`Stopping profilers`);\n for (const p of profilers) {\n p.stop();\n }\n\n if (Options.sanitize) {\n log(\"Sanitizing profiles\");\n for (const p of profilers) {\n p.sanitize();\n }\n }\n\n for (const p of profilers) {\n p.write();\n }\n\n // signal-exit always forces an exit, even if there are existing listeners.\n // If we are here and Node's \"handleProcessExit\" handler is still present,\n // then it's not going to run and we'll exit with without having set the code\n // to \"Unfinished Top-Level Await\" i.e. 13.\n //\n // To work around this problem, manually set the exit code to 13 so it doesn't\n // look like the process succeeded.\n //\n // See:\n // - https://github.com/jakebailey/pprof-it/issues/1\n // - https://github.com/nodejs/node/blob/67660e886758ba0ab71cb6bf90745bf0212b4167/lib/internal/modules/esm/handle_process_exit.js#L8\n const exitListeners = process.listeners(\"exit\");\n for (const listener of exitListeners) {\n if (listener.name === \"handleProcessExit\") {\n process.exitCode = 13;\n }\n }\n });\n}\n",
"projectRootPath": "/home/jabaile/work/pprof-it",
"scriptKindName": "TS"
}
]
}
}
Info 15 [10:32:22.522] getConfigFileNameForFile:: File: /home/jabaile/work/pprof-it/src/index.ts ProjectRootPath: /home/jabaile/work/pprof-it:: Result: /home/jabaile/work/pprof-it/tsconfig.json
Info 16 [10:32:22.522] Creating configuration project /home/jabaile/work/pprof-it/tsconfig.json
Info 17 [10:32:22.525] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/tsconfig.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Config file
Info 18 [10:32:22.526] event:
{"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/home/jabaile/work/pprof-it/tsconfig.json","reason":"Creating possible configured project for /home/jabaile/work/pprof-it/src/index.ts to open"}}
Info 19 [10:32:22.552] Config: /home/jabaile/work/pprof-it/tsconfig.json : {
"rootNames": [
"/home/jabaile/work/pprof-it/src/index.ts",
"/home/jabaile/work/pprof-it/src/main.ts"
],
"options": {
"lib": [
"lib.es2020.d.ts"
],
"module": 100,
"target": 7,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": 3,
"outDir": "/home/jabaile/work/pprof-it/dist",
"declaration": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"newLine": 1,
"configFilePath": "/home/jabaile/work/pprof-it/tsconfig.json"
}
}
Info 20 [10:32:22.553] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json 2000 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Extended config file
Info 21 [10:32:22.554] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 22 [10:32:22.808] Elapsed:: 254.30182200670242ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 23 [10:32:22.809] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src/main.ts 500 undefined WatchType: Closed Script info
Info 24 [10:32:22.818] Starting updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json
Info 25 [10:32:22.848] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 26 [10:32:22.849] Elapsed:: 0.0163000226020813ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 27 [10:32:22.852] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 28 [10:32:22.852] Elapsed:: 0.01100003719329834ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 29 [10:32:22.852] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 30 [10:32:22.867] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 31 [10:32:22.896] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 32 [10:32:23.202] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 33 [10:32:23.203] Elapsed:: 0.7263000011444092ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 34 [10:32:23.204] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 35 [10:32:23.205] Elapsed:: 1.4618000388145447ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 36 [10:32:23.274] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 37 [10:32:23.281] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 38 [10:32:23.281] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/json-schema/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 39 [10:32:23.281] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/minimist/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 40 [10:32:23.282] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/normalize-package-data/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 41 [10:32:23.282] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 42 [10:32:23.283] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 43 [10:32:23.455] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 44 [10:32:23.455] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 45 [10:32:23.455] Elapsed:: 0.011500000953674316ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 46 [10:32:23.456] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 47 [10:32:23.457] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/source-map/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 48 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 49 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 50 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 51 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/sourcemapper/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 52 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 53 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 54 [10:32:23.458] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 55 [10:32:23.459] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 56 [10:32:23.459] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 57 [10:32:23.459] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/semver/functions/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 58 [10:32:23.459] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 59 [10:32:23.459] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/semver/internals/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 60 [10:32:23.459] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 61 [10:32:23.459] Elapsed:: 0.008499979972839355ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 62 [10:32:23.460] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 63 [10:32:23.460] Elapsed:: 0.16899996995925903ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 64 [10:32:23.460] Finishing updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed: 641.8257579803467ms
Info 65 [10:32:23.460] Project '/home/jabaile/work/pprof-it/tsconfig.json' (Configured)
Info 66 [10:32:23.476] Files (192)
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.core.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.collection.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.generator.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.iterable.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.promise.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.proxy.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.reflect.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.array.include.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.date.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.object.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.string.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.promise.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.regexp.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.array.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.object.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.string.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.symbol.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.bigint.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.date.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.promise.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.string.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.number.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.esnext.intl.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.decorators.d.ts
/home/jabaile/.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.decorators.legacy.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/assert.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/assert/strict.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/header.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/readable.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/file.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/fetch.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/formdata.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/connector.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/client.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/errors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/dispatcher.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/global-dispatcher.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/global-origin.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/pool-stats.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/handlers.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/balanced-pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-interceptor.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-client.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-errors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/proxy-agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/api.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/cookies.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/patch.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/filereader.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/diagnostics-channel.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/websocket.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/content-type.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/cache.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/interceptors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/globals.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/async_hooks.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/buffer.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/child_process.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/cluster.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/console.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/constants.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/crypto.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dgram.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/diagnostics_channel.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dns.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dns/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/domain.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dom-events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/fs.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/fs/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/http.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/http2.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/https.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/inspector.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/module.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/net.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/os.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/path.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/perf_hooks.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/process.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/punycode.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/querystring.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/readline.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/readline/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/repl.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/consumers.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/web.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/string_decoder.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/test.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/timers.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/timers/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/tls.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/trace_events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/tty.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/url.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/util.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/v8.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/vm.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/wasi.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/worker_threads.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/zlib.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/globals.global.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/index.d.ts
/home/jabaile/work/pprof-it/node_modules/pprof-format/dist/index.d.ts
/home/jabaile/work/pprof-it/node_modules/source-map/source-map.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/v8-types.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/heap-profiler.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/time-profiler-bindings.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/time-profiler.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/profile-encoder.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/logger.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@datadog/pprof/out/src/profile-serializer.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/signals.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/index.d.ts
/home/jabaile/work/pprof-it/src/index.ts
/home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/index.d.ts
/home/jabaile/work/pprof-it/src/main.ts
/home/jabaile/work/pprof-it/node_modules/@types/foreground-child/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/json-schema/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/minimist/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/normalize-package-data/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/classes/semver.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/parse.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/valid.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/clean.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/inc.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/diff.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/major.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/minor.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/patch.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/prerelease.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/compare.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/rcompare.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/compare-loose.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/compare-build.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/sort.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/rsort.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/gt.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/lt.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/eq.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/neq.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/gte.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/lte.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/cmp.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/coerce.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/classes/comparator.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/classes/range.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/functions/satisfies.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/max-satisfying.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/min-satisfying.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/to-comparators.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/min-version.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/valid.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/outside.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/gtr.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/ltr.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/intersects.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/simplify.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/ranges/subset.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/internals/identifiers.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/semver/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/signal-exit/index.d.ts
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts
Library referenced via 'es5' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es5' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts
Library referenced via 'es2015' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
Library referenced via 'es2015' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts
Library referenced via 'es2016' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2016' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts
Library referenced via 'es2017' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2017' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts
Library referenced via 'es2018' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2018' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts
Library referenced via 'es2019' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2019' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts
Library referenced via 'es2020' from file 'node_modules/@types/node/index.d.ts'
Library 'lib.es2020.d.ts' specified in compilerOptions
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.core.d.ts
Library referenced via 'es2015.core' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.core' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.collection.d.ts
Library referenced via 'es2015.collection' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.collection' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.generator.d.ts
Library referenced via 'es2015.generator' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.generator' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.iterable.d.ts
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.generator.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.object.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.string.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.generator.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.object.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.string.d.ts'
Library referenced via 'es2015.iterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.promise.d.ts
Library referenced via 'es2015.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.proxy.d.ts
Library referenced via 'es2015.proxy' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.proxy' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.reflect.d.ts
Library referenced via 'es2015.reflect' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.reflect' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.d.ts
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.iterable.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.iterable.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
Library referenced via 'es2015.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
Library referenced via 'es2015.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2015.d.ts'
Library referenced via 'es2015.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.array.include.d.ts
Library referenced via 'es2016.array.include' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
Library referenced via 'es2016.array.include' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.intl.d.ts
Library referenced via 'es2016.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
Library referenced via 'es2016.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2016.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.date.d.ts
Library referenced via 'es2017.date' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.date' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.object.d.ts
Library referenced via 'es2017.object' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.object' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
Library referenced via 'es2017.sharedmemory' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.sharedmemory' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.string.d.ts
Library referenced via 'es2017.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.intl.d.ts
Library referenced via 'es2017.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
Library referenced via 'es2017.typedarrays' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
Library referenced via 'es2017.typedarrays' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2017.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
Library referenced via 'es2018.asyncgenerator' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.asyncgenerator' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
Library referenced via 'es2018.asynciterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.asynciterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
Library referenced via 'esnext.asynciterable' from file 'node_modules/@types/node/index.d.ts'
Library referenced via 'es2018.asynciterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.asynciterable' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.intl.d.ts
Library referenced via 'es2018.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.intl.d.ts'
Library referenced via 'es2018.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.intl.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.promise.d.ts
Library referenced via 'es2018.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.regexp.d.ts
Library referenced via 'es2018.regexp' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
Library referenced via 'es2018.regexp' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2018.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.array.d.ts
Library referenced via 'es2019.array' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2019.array' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.object.d.ts
Library referenced via 'es2019.object' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2019.object' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.string.d.ts
Library referenced via 'es2019.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2019.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.symbol.d.ts
Library referenced via 'es2019.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2019.symbol' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.intl.d.ts
Library referenced via 'es2019.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
Library referenced via 'es2019.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2019.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.bigint.d.ts
Library referenced via 'es2020.bigint' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'esnext.bigint' from file 'node_modules/@types/node/index.d.ts'
Library referenced via 'es2020.bigint' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.date.d.ts
Library referenced via 'es2020.date' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.date' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.promise.d.ts
Library referenced via 'es2020.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.promise' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts
Library referenced via 'es2020.sharedmemory' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.sharedmemory' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.string.d.ts
Library referenced via 'es2020.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.string' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
Library referenced via 'es2020.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.symbol.wellknown' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.intl.d.ts
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.bigint.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.date.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.number.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.bigint.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.date.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.number.d.ts'
Library referenced via 'es2020.intl' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.number.d.ts
Library referenced via 'es2020.number' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
Library referenced via 'es2020.number' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es2020.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.esnext.intl.d.ts
Library referenced via 'esnext.intl' from file 'node_modules/@types/node/index.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.decorators.d.ts
Library referenced via 'decorators' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts'
Library referenced via 'decorators' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts'
../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.decorators.legacy.d.ts
Library referenced via 'decorators.legacy' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts'
Library referenced via 'decorators.legacy' from file '../../.vscode-server/extensions/ms-vscode.vscode-typescript-next-5.5.20240424/node_modules/typescript/lib/lib.es5.d.ts'
node_modules/@types/node/assert.d.ts
Referenced via 'assert.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/assert/strict.d.ts
Referenced via 'assert/strict.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/undici-types/header.d.ts
Imported via './header' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via "./header" from file 'node_modules/undici-types/errors.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via './header' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via './header' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/readable.d.ts
Imported via './readable' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/readable.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/file.d.ts
Imported via './file' from file 'node_modules/undici-types/formdata.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
Imported via './file' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
Imported via './file' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/fetch.d.ts
Imported via './fetch' from file 'node_modules/undici-types/formdata.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/cookies.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/cache.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/formdata.d.ts
Imported via './formdata' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/fetch.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/connector.d.ts
Imported via "./connector" from file 'node_modules/undici-types/client.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via "./connector" from file 'node_modules/undici-types/diagnostics-channel.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/client.d.ts
Imported via './client' from file 'node_modules/undici-types/errors.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/errors.d.ts
Imported via './errors' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/mock-errors.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/dispatcher.d.ts
Imported via './dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/fetch.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/client.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/global-dispatcher.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/handlers.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/balanced-pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/api.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/diagnostics-channel.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/interceptors.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/global-dispatcher.d.ts
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/global-origin.d.ts
Imported via './global-origin' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-origin.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/pool-stats.d.ts
Imported via './pool-stats' from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/pool-stats.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/pool.d.ts
Imported via './pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via "./pool" from file 'node_modules/undici-types/pool-stats.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/balanced-pool.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/agent.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/handlers.d.ts
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/balanced-pool.d.ts
Imported via './balanced-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/balanced-pool.d.ts@5.26.5'
Imported via './balanced-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/balanced-pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/agent.d.ts
Imported via './agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-interceptor.d.ts
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-agent.d.ts
Imported via './mock-agent' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-client.d.ts
Imported via './mock-client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-client.d.ts@5.26.5'
Imported via './mock-client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-client.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-pool.d.ts
Imported via './mock-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-pool.d.ts@5.26.5'
Imported via './mock-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-errors.d.ts
Imported via './mock-errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-errors.d.ts@5.26.5'
Imported via './mock-errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-errors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/proxy-agent.d.ts
Imported via './proxy-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/proxy-agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/api.d.ts
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/cookies.d.ts
Imported via './cookies' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cookies.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/patch.d.ts
Imported via './patch' from file 'node_modules/undici-types/filereader.d.ts' with packageId 'undici-types/patch.d.ts@5.26.5'
Imported via './patch' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/patch.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/filereader.d.ts
Imported via './filereader' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/filereader.d.ts@5.26.5'
Imported via './filereader' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/filereader.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/diagnostics-channel.d.ts
Imported via './diagnostics-channel' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/diagnostics-channel.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/websocket.d.ts
Imported via './websocket' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/websocket.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/content-type.d.ts
Imported via './content-type' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/content-type.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/cache.d.ts
Imported via './cache' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cache.d.ts@5.26.5'
Imported via './cache' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cache.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/interceptors.d.ts
Imported via './interceptors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/interceptors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/index.d.ts
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/@types/node/globals.d.ts
Referenced via 'globals.d.ts' from file 'node_modules/@types/node/index.d.ts'
File is CommonJS module because 'node_modules/@types/node/package.json' does not have field "type"
node_modules/@types/node/async_hooks.d.ts
Referenced via 'async_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/buffer.d.ts
Referenced via 'buffer.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/child_process.d.ts
Referenced via 'child_process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/cluster.d.ts
Referenced via 'cluster.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/console.d.ts
Referenced via 'console.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/constants.d.ts
Referenced via 'constants.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/crypto.d.ts
Referenced via 'crypto.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dgram.d.ts
Referenced via 'dgram.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/diagnostics_channel.d.ts
Referenced via 'diagnostics_channel.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns.d.ts
Referenced via 'dns.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns/promises.d.ts
Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/domain.d.ts
Referenced via 'domain.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dom-events.d.ts
Referenced via 'dom-events.d.ts' from file 'node_modules/@types/node/index.d.ts'
File is CommonJS module because 'node_modules/@types/node/package.json' does not have field "type"
node_modules/@types/node/events.d.ts
Referenced via 'events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs.d.ts
Referenced via 'fs.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs/promises.d.ts
Referenced via 'fs/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http.d.ts
Referenced via 'http.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http2.d.ts
Referenced via 'http2.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/https.d.ts
Referenced via 'https.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/inspector.d.ts
Referenced via 'inspector.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/module.d.ts
Referenced via 'module.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/net.d.ts
Referenced via 'net.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/os.d.ts
Referenced via 'os.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/path.d.ts
Referenced via 'path.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/perf_hooks.d.ts
Referenced via 'perf_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/process.d.ts
Referenced via 'process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/punycode.d.ts
Referenced via 'punycode.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/querystring.d.ts
Referenced via 'querystring.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/readline.d.ts
Referenced via 'readline.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/readline/promises.d.ts
Referenced via 'readline/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/repl.d.ts
Referenced via 'repl.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream.d.ts
Referenced via 'stream.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/promises.d.ts
Referenced via 'stream/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/consumers.d.ts
Referenced via 'stream/consumers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/web.d.ts
Referenced via 'stream/web.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/string_decoder.d.ts
Referenced via 'string_decoder.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/test.d.ts
Referenced via 'test.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers.d.ts
Referenced via 'timers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers/promises.d.ts
Referenced via 'timers/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tls.d.ts
Referenced via 'tls.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/trace_events.d.ts
Referenced via 'trace_events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tty.d.ts
Referenced via 'tty.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/url.d.ts
Referenced via 'url.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/util.d.ts
Referenced via 'util.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/v8.d.ts
Referenced via 'v8.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/vm.d.ts
Referenced via 'vm.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/wasi.d.ts
Referenced via 'wasi.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/worker_threads.d.ts
Referenced via 'worker_threads.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/zlib.d.ts
Referenced via 'zlib.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/globals.global.d.ts
Referenced via 'globals.global.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/index.d.ts
Type library referenced via 'node' from file 'node_modules/pprof-format/dist/index.d.ts' with packageId '@types/node/index.d.ts@18.19.8'
Type library referenced via 'node' from file 'node_modules/undici-types/formdata.d.ts' with packageId '@types/node/index.d.ts@18.19.8'
Entry point for implicit type library 'node' with packageId '@types/node/index.d.ts@18.19.8'
node_modules/pprof-format/dist/index.d.ts
Imported via 'pprof-format' from file 'node_modules/@datadog/pprof/out/src/heap-profiler.d.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
Imported via "pprof-format" from file 'node_modules/@datadog/pprof/out/src/time-profiler.d.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
Imported via "pprof-format" from file 'node_modules/@datadog/pprof/out/src/time-profiler.d.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
Imported via 'pprof-format' from file 'node_modules/@datadog/pprof/out/src/profile-encoder.d.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
Imported via 'pprof-format' from file 'node_modules/@datadog/pprof/out/src/profile-serializer.d.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
Imported via "pprof-format" from file 'src/index.ts' with packageId 'pprof-format/dist/index.d.ts@2.0.7'
File is CommonJS module because 'node_modules/pprof-format/package.json' has field "type" whose value is not "module"
node_modules/source-map/source-map.d.ts
Imported via 'source-map' from file 'node_modules/@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts' with packageId 'source-map/source-map.d.ts@0.7.4'
File is CommonJS module because 'node_modules/source-map/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts
Imported via './sourcemapper/sourcemapper' from file 'node_modules/@datadog/pprof/out/src/heap-profiler.d.ts' with packageId '@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts@5.0.0'
Imported via './sourcemapper/sourcemapper' from file 'node_modules/@datadog/pprof/out/src/time-profiler.d.ts' with packageId '@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts@5.0.0'
Imported via './sourcemapper/sourcemapper' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts@5.0.0'
Imported via './sourcemapper/sourcemapper' from file 'node_modules/@datadog/pprof/out/src/profile-serializer.d.ts' with packageId '@datadog/pprof/out/src/sourcemapper/sourcemapper.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/v8-types.d.ts
Imported via './v8-types' from file 'node_modules/@datadog/pprof/out/src/heap-profiler.d.ts' with packageId '@datadog/pprof/out/src/v8-types.d.ts@5.0.0'
Imported via './v8-types' from file 'node_modules/@datadog/pprof/out/src/time-profiler.d.ts' with packageId '@datadog/pprof/out/src/v8-types.d.ts@5.0.0'
Imported via './v8-types' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/v8-types.d.ts@5.0.0'
Imported via './v8-types' from file 'node_modules/@datadog/pprof/out/src/profile-serializer.d.ts' with packageId '@datadog/pprof/out/src/v8-types.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/heap-profiler.d.ts
Imported via './heap-profiler' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/heap-profiler.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/time-profiler-bindings.d.ts
Imported via './time-profiler-bindings' from file 'node_modules/@datadog/pprof/out/src/time-profiler.d.ts' with packageId '@datadog/pprof/out/src/time-profiler-bindings.d.ts@5.0.0'
Imported via "@datadog/pprof/out/src/time-profiler-bindings" from file 'src/index.ts' with packageId '@datadog/pprof/out/src/time-profiler-bindings.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/time-profiler.d.ts
Imported via './time-profiler' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/time-profiler.d.ts@5.0.0'
Imported via './time-profiler' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/time-profiler.d.ts@5.0.0'
Imported via "@datadog/pprof/out/src/time-profiler" from file 'src/index.ts' with packageId '@datadog/pprof/out/src/time-profiler.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/profile-encoder.d.ts
Imported via './profile-encoder' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/profile-encoder.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/logger.d.ts
Imported via './logger' from file 'node_modules/@datadog/pprof/out/src/index.d.ts' with packageId '@datadog/pprof/out/src/logger.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/index.d.ts
Imported via "@datadog/pprof" from file 'src/index.ts' with packageId '@datadog/pprof/out/src/index.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/@datadog/pprof/out/src/profile-serializer.d.ts
Imported via "@datadog/pprof/out/src/profile-serializer" from file 'src/index.ts' with packageId '@datadog/pprof/out/src/profile-serializer.d.ts@5.0.0'
File is CommonJS module because 'node_modules/@datadog/pprof/package.json' does not have field "type"
node_modules/signal-exit/dist/cjs/signals.d.ts
Imported via './signals.js' from file 'node_modules/signal-exit/dist/cjs/index.d.ts' with packageId 'signal-exit/dist/cjs/signals.d.ts@4.1.0'
File is CommonJS module because 'node_modules/signal-exit/dist/cjs/package.json' has field "type" whose value is not "module"
node_modules/signal-exit/dist/cjs/index.d.ts
Imported via "signal-exit" from file 'src/index.ts' with packageId 'signal-exit/dist/cjs/index.d.ts@4.1.0'
File is CommonJS module because 'node_modules/signal-exit/dist/cjs/package.json' has field "type" whose value is not "module"
src/index.ts
Matched by default include pattern '**/*'
File is CommonJS module because 'package.json' does not have field "type"
node_modules/foreground-child/dist/cjs/index.d.ts
Imported via "foreground-child" from file 'src/main.ts' with packageId 'foreground-child/dist/cjs/index.d.ts@3.1.1'
File is CommonJS module because 'node_modules/foreground-child/dist/cjs/package.json' has field "type" whose value is not "module"
src/main.ts
Matched by default include pattern '**/*'
File is CommonJS module because 'package.json' does not have field "type"
node_modules/@types/foreground-child/index.d.ts
Entry point for implicit type library 'foreground-child' with packageId '@types/foreground-child/index.d.ts@2.0.2'
File is CommonJS module because 'node_modules/@types/foreground-child/package.json' does not have field "type"
node_modules/@types/json-schema/index.d.ts
Entry point for implicit type library 'json-schema' with packageId '@types/json-schema/index.d.ts@7.0.15'
File is CommonJS module because 'node_modules/@types/json-schema/package.json' does not have field "type"
node_modules/@types/minimist/index.d.ts
Entry point for implicit type library 'minimist' with packageId '@types/minimist/index.d.ts@1.2.5'
File is CommonJS module because 'node_modules/@types/minimist/package.json' does not have field "type"
node_modules/@types/normalize-package-data/index.d.ts
Entry point for implicit type library 'normalize-package-data' with packageId '@types/normalize-package-data/index.d.ts@2.4.4'
File is CommonJS module because 'node_modules/@types/normalize-package-data/package.json' does not have field "type"
node_modules/@types/semver/classes/semver.d.ts
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/parse.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/valid.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/inc.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/diff.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/major.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/minor.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/patch.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/prerelease.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/compare.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/rcompare.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/compare-loose.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/compare-build.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/sort.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/rsort.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/gt.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/lt.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/eq.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/neq.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/gte.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/lte.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/cmp.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/coerce.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "./semver" from file 'node_modules/@types/semver/classes/comparator.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "./semver" from file 'node_modules/@types/semver/classes/range.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/satisfies.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/max-satisfying.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/min-satisfying.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/min-version.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
Imported via "./classes/semver" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/parse.d.ts
Imported via "./functions/parse" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/parse.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/valid.d.ts
Imported via "./functions/valid" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/valid.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/clean.d.ts
Imported via "./functions/clean" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/clean.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/inc.d.ts
Imported via "./functions/inc" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/inc.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/diff.d.ts
Imported via "./functions/diff" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/diff.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/major.d.ts
Imported via "./functions/major" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/major.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/minor.d.ts
Imported via "./functions/minor" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/minor.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/patch.d.ts
Imported via "./functions/patch" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/patch.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/prerelease.d.ts
Imported via "./functions/prerelease" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/prerelease.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/compare.d.ts
Imported via "./functions/compare" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/compare.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/rcompare.d.ts
Imported via "./functions/rcompare" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/rcompare.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/compare-loose.d.ts
Imported via "./functions/compare-loose" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/compare-loose.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/compare-build.d.ts
Imported via "./functions/compare-build" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/compare-build.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/sort.d.ts
Imported via "./functions/sort" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/sort.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/rsort.d.ts
Imported via "./functions/rsort" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/rsort.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/gt.d.ts
Imported via "./functions/gt" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/gt.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/lt.d.ts
Imported via "./functions/lt" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/lt.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/eq.d.ts
Imported via "./functions/eq" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/eq.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/neq.d.ts
Imported via "./functions/neq" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/neq.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/gte.d.ts
Imported via "./functions/gte" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/gte.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/lte.d.ts
Imported via "./functions/lte" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/lte.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/cmp.d.ts
Imported via "./functions/cmp" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/cmp.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/coerce.d.ts
Imported via "./functions/coerce" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/coerce.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/classes/comparator.d.ts
Imported via "./comparator" from file 'node_modules/@types/semver/classes/range.d.ts' with packageId '@types/semver/classes/comparator.d.ts@7.5.6'
Imported via "./classes/comparator" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/comparator.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/classes/range.d.ts
Imported via "../classes/range" from file 'node_modules/@types/semver/functions/satisfies.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/max-satisfying.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/min-satisfying.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/to-comparators.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/min-version.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/valid.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/intersects.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/simplify.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/subset.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
Imported via "./classes/range" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/functions/satisfies.d.ts
Imported via "./functions/satisfies" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/functions/satisfies.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/max-satisfying.d.ts
Imported via "./ranges/max-satisfying" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/max-satisfying.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/min-satisfying.d.ts
Imported via "./ranges/min-satisfying" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/min-satisfying.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/to-comparators.d.ts
Imported via "./ranges/to-comparators" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/to-comparators.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/min-version.d.ts
Imported via "./ranges/min-version" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/min-version.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/valid.d.ts
Imported via "./ranges/valid" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/valid.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/outside.d.ts
Imported via "./ranges/outside" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/outside.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/gtr.d.ts
Imported via "./ranges/gtr" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/gtr.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/ltr.d.ts
Imported via "./ranges/ltr" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/ltr.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/intersects.d.ts
Imported via "./ranges/intersects" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/intersects.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/simplify.d.ts
Imported via "./ranges/simplify" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/simplify.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/ranges/subset.d.ts
Imported via "./ranges/subset" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/ranges/subset.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/internals/identifiers.d.ts
Imported via "./internals/identifiers" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/internals/identifiers.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/semver/index.d.ts
Entry point for implicit type library 'semver' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/classes/semver.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/parse.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/valid.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/clean.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/inc.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/diff.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/major.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/minor.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/patch.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/prerelease.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/compare.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/rcompare.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/compare-build.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/sort.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/rsort.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/gt.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/lt.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/eq.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/neq.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/gte.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/lte.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/cmp.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/coerce.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/classes/range.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/classes/comparator.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/functions/satisfies.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/max-satisfying.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/min-satisfying.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/to-comparators.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/min-version.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/valid.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/intersects.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/simplify.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
Imported via "../index" from file 'node_modules/@types/semver/ranges/subset.d.ts' with packageId '@types/semver/index.d.ts@7.5.6'
File is CommonJS module because 'node_modules/@types/semver/package.json' does not have field "type"
node_modules/@types/signal-exit/index.d.ts
Entry point for implicit type library 'signal-exit' with packageId '@types/signal-exit/index.d.ts@3.0.4'
File is CommonJS module because 'node_modules/@types/signal-exit/package.json' does not have field "type"
Info 67 [10:32:23.476] -----------------------------------------------
Info 68 [10:32:23.480] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 69 [10:32:23.482] AutoImportProviderProject: found 5 root files in 2 dependencies 0 referenced projects in 2.5996009707450867 ms
Info 70 [10:32:23.483] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
Info 71 [10:32:23.485] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 72 [10:32:23.487] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 73 [10:32:23.487] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 74 [10:32:23.487] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 75 [10:32:23.499] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 76 [10:32:23.503] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 77 [10:32:23.503] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 78 [10:32:23.503] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 79 [10:32:23.503] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed: 20.608102023601532ms
Info 80 [10:32:23.503] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 81 [10:32:23.506] Files (93)
/home/jabaile/work/pprof-it/node_modules/@types/node/assert.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/assert/strict.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/header.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/readable.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/file.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/fetch.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/formdata.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/connector.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/client.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/errors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/dispatcher.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/global-dispatcher.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/global-origin.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/pool-stats.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/handlers.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/balanced-pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-interceptor.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-client.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-pool.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/mock-errors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/proxy-agent.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/api.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/cookies.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/patch.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/filereader.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/diagnostics-channel.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/websocket.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/content-type.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/cache.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/interceptors.d.ts
/home/jabaile/work/pprof-it/node_modules/undici-types/index.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/globals.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/async_hooks.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/buffer.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/child_process.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/cluster.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/console.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/constants.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/crypto.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dgram.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/diagnostics_channel.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dns.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dns/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/domain.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/dom-events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/fs.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/fs/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/http.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/http2.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/https.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/inspector.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/module.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/net.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/os.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/path.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/perf_hooks.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/process.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/punycode.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/querystring.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/readline.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/readline/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/repl.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/consumers.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/stream/web.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/string_decoder.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/test.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/timers.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/timers/promises.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/tls.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/trace_events.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/tty.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/url.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/util.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/v8.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/vm.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/wasi.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/worker_threads.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/zlib.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/globals.global.d.ts
/home/jabaile/work/pprof-it/node_modules/@types/node/index.d.ts
/home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/index.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/signals.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/index.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/browser.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/signals.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/index.d.ts
/home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/browser.d.ts
node_modules/@types/node/assert.d.ts
Referenced via 'assert.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/assert/strict.d.ts
Referenced via 'assert/strict.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/undici-types/header.d.ts
Imported via './header' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via "./header" from file 'node_modules/undici-types/errors.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via './header' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
Imported via './header' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/header.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/readable.d.ts
Imported via './readable' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/readable.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/file.d.ts
Imported via './file' from file 'node_modules/undici-types/formdata.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
Imported via './file' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
Imported via './file' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/file.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/fetch.d.ts
Imported via './fetch' from file 'node_modules/undici-types/formdata.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/cookies.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/cache.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
Imported via './fetch' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/fetch.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/formdata.d.ts
Imported via './formdata' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/fetch.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
Imported via './formdata' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/formdata.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/connector.d.ts
Imported via "./connector" from file 'node_modules/undici-types/client.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via "./connector" from file 'node_modules/undici-types/diagnostics-channel.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
Imported via './connector' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/connector.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/client.d.ts
Imported via './client' from file 'node_modules/undici-types/errors.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
Imported via './client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/client.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/errors.d.ts
Imported via './errors' from file 'node_modules/undici-types/dispatcher.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/mock-errors.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
Imported via './errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/errors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/dispatcher.d.ts
Imported via './dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/fetch.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/client.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/global-dispatcher.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/handlers.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/balanced-pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-interceptor.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/api.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/diagnostics-channel.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via './dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
Imported via "./dispatcher" from file 'node_modules/undici-types/interceptors.d.ts' with packageId 'undici-types/dispatcher.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/global-dispatcher.d.ts
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
Imported via './global-dispatcher' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-dispatcher.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/global-origin.d.ts
Imported via './global-origin' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/global-origin.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/pool-stats.d.ts
Imported via './pool-stats' from file 'node_modules/undici-types/pool.d.ts' with packageId 'undici-types/pool-stats.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/pool.d.ts
Imported via './pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via "./pool" from file 'node_modules/undici-types/pool-stats.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/balanced-pool.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/agent.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
Imported via './pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/handlers.d.ts
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
Imported via './handlers' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/handlers.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/balanced-pool.d.ts
Imported via './balanced-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/balanced-pool.d.ts@5.26.5'
Imported via './balanced-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/balanced-pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/agent.d.ts
Imported via './agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/proxy-agent.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
Imported via './agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-interceptor.d.ts
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-agent.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
Imported via './mock-interceptor' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-interceptor.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-agent.d.ts
Imported via './mock-agent' from file 'node_modules/undici-types/mock-client.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/mock-pool.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
Imported via './mock-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-client.d.ts
Imported via './mock-client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-client.d.ts@5.26.5'
Imported via './mock-client' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-client.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-pool.d.ts
Imported via './mock-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-pool.d.ts@5.26.5'
Imported via './mock-pool' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-pool.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/mock-errors.d.ts
Imported via './mock-errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-errors.d.ts@5.26.5'
Imported via './mock-errors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/mock-errors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/proxy-agent.d.ts
Imported via './proxy-agent' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/proxy-agent.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/api.d.ts
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
Imported via './api' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/api.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/cookies.d.ts
Imported via './cookies' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cookies.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/patch.d.ts
Imported via './patch' from file 'node_modules/undici-types/filereader.d.ts' with packageId 'undici-types/patch.d.ts@5.26.5'
Imported via './patch' from file 'node_modules/undici-types/websocket.d.ts' with packageId 'undici-types/patch.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/filereader.d.ts
Imported via './filereader' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/filereader.d.ts@5.26.5'
Imported via './filereader' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/filereader.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/diagnostics-channel.d.ts
Imported via './diagnostics-channel' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/diagnostics-channel.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/websocket.d.ts
Imported via './websocket' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/websocket.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/content-type.d.ts
Imported via './content-type' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/content-type.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/cache.d.ts
Imported via './cache' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cache.d.ts@5.26.5'
Imported via './cache' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/cache.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/interceptors.d.ts
Imported via './interceptors' from file 'node_modules/undici-types/index.d.ts' with packageId 'undici-types/interceptors.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/undici-types/index.d.ts
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
Imported via "undici-types" from file 'node_modules/@types/node/globals.d.ts' with packageId 'undici-types/index.d.ts@5.26.5'
File is CommonJS module because 'node_modules/undici-types/package.json' does not have field "type"
node_modules/@types/node/globals.d.ts
Referenced via 'globals.d.ts' from file 'node_modules/@types/node/index.d.ts'
File is CommonJS module because 'node_modules/@types/node/package.json' does not have field "type"
node_modules/@types/node/async_hooks.d.ts
Referenced via 'async_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/buffer.d.ts
Referenced via 'buffer.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/child_process.d.ts
Referenced via 'child_process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/cluster.d.ts
Referenced via 'cluster.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/console.d.ts
Referenced via 'console.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/constants.d.ts
Referenced via 'constants.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/crypto.d.ts
Referenced via 'crypto.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dgram.d.ts
Referenced via 'dgram.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/diagnostics_channel.d.ts
Referenced via 'diagnostics_channel.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns.d.ts
Referenced via 'dns.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns/promises.d.ts
Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/domain.d.ts
Referenced via 'domain.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dom-events.d.ts
Referenced via 'dom-events.d.ts' from file 'node_modules/@types/node/index.d.ts'
File is CommonJS module because 'node_modules/@types/node/package.json' does not have field "type"
node_modules/@types/node/events.d.ts
Referenced via 'events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs.d.ts
Referenced via 'fs.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs/promises.d.ts
Referenced via 'fs/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http.d.ts
Referenced via 'http.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http2.d.ts
Referenced via 'http2.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/https.d.ts
Referenced via 'https.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/inspector.d.ts
Referenced via 'inspector.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/module.d.ts
Referenced via 'module.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/net.d.ts
Referenced via 'net.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/os.d.ts
Referenced via 'os.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/path.d.ts
Referenced via 'path.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/perf_hooks.d.ts
Referenced via 'perf_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/process.d.ts
Referenced via 'process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/punycode.d.ts
Referenced via 'punycode.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/querystring.d.ts
Referenced via 'querystring.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/readline.d.ts
Referenced via 'readline.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/readline/promises.d.ts
Referenced via 'readline/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/repl.d.ts
Referenced via 'repl.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream.d.ts
Referenced via 'stream.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/promises.d.ts
Referenced via 'stream/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/consumers.d.ts
Referenced via 'stream/consumers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/web.d.ts
Referenced via 'stream/web.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/string_decoder.d.ts
Referenced via 'string_decoder.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/test.d.ts
Referenced via 'test.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers.d.ts
Referenced via 'timers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers/promises.d.ts
Referenced via 'timers/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tls.d.ts
Referenced via 'tls.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/trace_events.d.ts
Referenced via 'trace_events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tty.d.ts
Referenced via 'tty.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/url.d.ts
Referenced via 'url.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/util.d.ts
Referenced via 'util.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/v8.d.ts
Referenced via 'v8.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/vm.d.ts
Referenced via 'vm.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/wasi.d.ts
Referenced via 'wasi.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/worker_threads.d.ts
Referenced via 'worker_threads.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/zlib.d.ts
Referenced via 'zlib.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/globals.global.d.ts
Referenced via 'globals.global.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/index.d.ts
Type library referenced via 'node' from file 'node_modules/foreground-child/dist/mjs/index.d.ts' with packageId '@types/node/index.d.ts@18.19.8'
Type library referenced via 'node' from file 'node_modules/undici-types/formdata.d.ts' with packageId '@types/node/index.d.ts@18.19.8'
node_modules/foreground-child/dist/mjs/index.d.ts
Root file specified for compilation
File is ECMAScript module because 'node_modules/foreground-child/dist/mjs/package.json' has field "type" with value "module"
node_modules/signal-exit/dist/mjs/signals.d.ts
Imported via './signals.js' from file 'node_modules/signal-exit/dist/mjs/index.d.ts' with packageId 'signal-exit/dist/mjs/signals.d.ts@4.1.0'
Root file specified for compilation
File is ECMAScript module because 'node_modules/signal-exit/dist/mjs/package.json' has field "type" with value "module"
node_modules/signal-exit/dist/mjs/index.d.ts
Root file specified for compilation
Imported via './index.js' from file 'node_modules/signal-exit/dist/mjs/browser.d.ts' with packageId 'signal-exit/dist/mjs/index.d.ts@4.1.0'
File is ECMAScript module because 'node_modules/signal-exit/dist/mjs/package.json' has field "type" with value "module"
node_modules/signal-exit/dist/mjs/browser.d.ts
Root file specified for compilation
File is ECMAScript module because 'node_modules/signal-exit/dist/mjs/package.json' has field "type" with value "module"
node_modules/signal-exit/dist/cjs/signals.d.ts
Imported via './signals.js' from file 'node_modules/signal-exit/dist/cjs/index.d.ts' with packageId 'signal-exit/dist/cjs/signals.d.ts@4.1.0'
File is CommonJS module because 'node_modules/signal-exit/dist/cjs/package.json' has field "type" whose value is not "module"
node_modules/signal-exit/dist/cjs/index.d.ts
Imported via './index.js' from file 'node_modules/signal-exit/dist/cjs/browser.d.ts' with packageId 'signal-exit/dist/cjs/index.d.ts@4.1.0'
File is CommonJS module because 'node_modules/signal-exit/dist/cjs/package.json' has field "type" whose value is not "module"
node_modules/signal-exit/dist/cjs/browser.d.ts
Root file specified for compilation
File is CommonJS module because 'node_modules/signal-exit/dist/cjs/package.json' has field "type" whose value is not "module"
Info 82 [10:32:23.506] -----------------------------------------------
Info 83 [10:32:23.506] event:
{"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/jabaile/work/pprof-it/tsconfig.json"}}
Info 84 [10:32:23.508] event:
{"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"671a8e965918305ec86023fca9f3d1f99cfcc583393542c73905ceb14748cac6","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":10415,"tsx":0,"tsxSize":0,"dts":190,"dtsSize":2509506,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["es2020"],"module":"node16","target":"es2020","strict":true,"esModuleInterop":true,"skipLibCheck":true,"forceConsistentCasingInFileNames":true,"moduleResolution":"node16","outDir":"","declaration":true,"noImplicitReturns":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":true,"newLine":"lf"},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":true,"files":false,"include":false,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"5.5.0-dev.20240424"}}}
Info 85 [10:32:23.509] event:
{"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/home/jabaile/work/pprof-it/src/index.ts","configFile":"/home/jabaile/work/pprof-it/tsconfig.json","diagnostics":[]}}
Info 86 [10:32:23.509] Project '/home/jabaile/work/pprof-it/tsconfig.json' (Configured)
Info 86 [10:32:23.509] Files (192)
Info 86 [10:32:23.509] -----------------------------------------------
Info 86 [10:32:23.509] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 86 [10:32:23.509] Files (93)
Info 86 [10:32:23.509] -----------------------------------------------
Info 86 [10:32:23.509] Open files:
Info 86 [10:32:23.509] FileName: /home/jabaile/work/pprof-it/src/index.ts ProjectRootPath: /home/jabaile/work/pprof-it
Info 86 [10:32:23.509] Projects: /home/jabaile/work/pprof-it/tsconfig.json
Perf 86 [10:32:23.509] 2::updateOpen: elapsed time (in milliseconds) 989.0985
Info 87 [10:32:23.509] response:
{"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":662.4338600039482,"createAutoImportProviderProgramDurationMs":27.13780301809311},"body":true}
Info 88 [10:32:23.510] event:
{"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":1736486}}
Info 89 [10:32:23.510] request:
{
"seq": 3,
"type": "request",
"command": "projectInfo",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"needFileNameList": false
}
}
Perf 90 [10:32:23.510] 3::projectInfo: elapsed time (in milliseconds) 0.1656
Info 91 [10:32:23.510] response:
{"seq":0,"type":"response","command":"projectInfo","request_seq":3,"success":true,"body":{"configFileName":"/home/jabaile/work/pprof-it/tsconfig.json","languageServiceDisabled":false}}
Info 92 [10:32:23.511] request:
{
"seq": 14,
"type": "request",
"command": "encodedSemanticClassifications-full",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"start": 4715,
"length": 1034,
"format": "2020"
}
}
Perf 93 [10:32:23.541] 14::encodedSemanticClassifications-full: elapsed time (in milliseconds) 30.6032
Info 94 [10:32:23.541] response:
{"seq":0,"type":"response","command":"encodedSemanticClassifications-full","request_seq":14,"success":true,"body":{"spans":[4732,1,1792,4747,11,2817,4759,1,1793,4792,5,272,4820,1,1792,4835,14,2057,4856,3,272,4888,8,2817,4897,1,1793,4926,9,2081,4938,14,2056,4953,3,3088,4957,1,1792,4969,9,2080,5004,9,2080,5029,14,2056,5044,4,2584,5060,3,2816,5079,1,1792,5089,9,2080,5112,14,2056,5127,3,3088,5131,1,1792,5134,9,2080,5163,9,2080,5192,8,257,5215,8,2561,5226,7,256,5260,5,1793,5267,12,512,5289,12,1793,5328,5,3073,5367,5,3073,5376,7,256,5390,4,3073,5418,8,2560,5434,5,3072,5454,8,3073,5481,6,2816,5493,8,2560,5519,3,2089,5529,3,272,5668,6,2816,5680,8,2560,5689,8,2560,5719,1,2089,5729,8,2560,5738,8,2560],"endOfLineState":0}}
Info 95 [10:32:23.545] request:
{
"seq": 15,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 96 [10:32:23.566] 15::getApplicableRefactors: elapsed time (in milliseconds) 21.4883
Info 97 [10:32:23.566] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":15,"success":true,"body":[]}
Info 98 [10:32:23.567] request:
{
"seq": 16,
"type": "request",
"command": "getSupportedCodeFixes",
"arguments": null
}
Perf 99 [10:32:23.567] 16::getSupportedCodeFixes: elapsed time (in milliseconds) 0.1691
Info 100 [10:32:23.567] response:
{"seq":0,"type":"response","command":"getSupportedCodeFixes","request_seq":16,"success":true,"body":["2352","1375","2853","1431","2345","2322","2678","2356","2362","2363","2736","2365","2367","2801","2461","2495","2802","2549","2548","2488","2504","2339","2349","2351","2304","18004","2612","1329","7051","2412","2375","2379","80004","80002","80006","80001","2713","1205","1484","1485","80009","2690","2420","2720","2552","2663","2662","2503","2686","2693","1361","2581","2583","2584","2593","2311","2592","2582","2580","2591","2833","2719","2530","2603","2344","4113","4112","4116","4114","4115","4119","4121","4120","4122","4111","2683","2459","5086","5087","2551","2568","2570","2724","4117","4123","2769","2355","2741","2739","2740","2348","2554","2307","7016","2515","2654","2655","2653","2656","2650","17009","2377","17004","2845","1378","2854","1432","1312","2689","1451","1382","1381","8024","1272","6133","6196","6138","6192","6198","6199","6205","7027","7028","8020","17019","17020","2774","1308","2852","1103","2610","2611","7034","7005","7006","7019","7033","7010","7032","7008","7046","7043","7044","7047","7048","7050","7049","7045","1064","1002","1003","1005","1006","1007","1009","1010","1011","1012","1013","1014","1015","1016","1017","1018","1019","1020","1021","1022","1024","1025","1028","1029","1030","1031","1034","1035","1036","1038","1039","1040","1042","1044","1046","1047","1048","1049","1051","1052","1053","1054","1055","1056","1058","1059","1060","1061","1062","1063","1065","1066","1068","1069","1070","1071","1079","1084","1089","1090","1091","1092","1093","1094","1095","1096","1097","1098","1099","1100","1101","1102","1104","1105","1106","1107","1108","1109","1110","1111","1113","1114","1115","1116","1117","1118","1119","1120","1121","1123","1124","1125","1126","1127","1128","1129","1130","1131","1132","1134","1135","1136","1137","1138","1139","1140","1141","1142","1144","1145","1146","1147","1148","1149","1155","1156","1160","1161","1162","1163","1164","1165","1166","1168","1169","1170","1171","1172","1173","1174","1175","1176","1177","1178","1179","1180","1181","1182","1183","1184","1185","1186","1187","1188","1189","1190","1191","1192","1193","1194","1195","1196","1197","1198","1199","1200","1202","1203","1206","1207","1209","1210","1211","1212","1213","1214","1215","1216","1218","1221","1222","1223","1224","1225","1226","1227","1228","1229","1230","1231","1232","1233","1234","1235","1236","1237","1238","1239","1240","1241","1242","1243","1244","1245","1246","1247","1248","1249","1250","1251","1252","1253","1254","1255","1257","1258","1259","1260","1261","1262","1263","1264","1265","1266","1267","1268","1269","1270","1271","1273","1274","1275","1276","1277","1278","1279","1280","1281","1282","1283","1284","1285","1286","1287","1288","1289","1290","1291","1292","1293","1300","1309","1313","1314","1315","1316","1317","1318","1319","1320","1321","1322","1323","1324","1325","1326","1327","1328","1330","1331","1332","1333","1334","1335","1337","1338","1339","1340","1341","1343","1344","1345","1346","1347","1348","1349","1351","1352","1353","1354","1355","1356","1357","1358","1359","1360","1362","1363","1368","1379","1380","1385","1386","1387","1388","1389","1390","1392","1433","1434","1435","1436","1437","1438","1439","1440","1441","1442","1443","1448","1453","1454","1455","1456","1463","1464","1470","1471","1472","1473","1474","1477","1478","1479","1486","1487","1488","1489","1490","1491","1492","1493","1494","1495","1496","1497","1498","1499","1500","1501","1502","1503","1504","1505","1506","1507","1508","1509","1510","1511","1512","1513","1514","1515","1516","1517","1518","1519","1520","1521","1522","1523","1524","1525","1526","1527","1528","1529","1530","1531","1532","1533","1534","1535","2200","2201","2202","2203","2204","2205","2206","2207","2208","2209","2210","2300","2301","2302","2303","2305","2306","2308","2309","2310","2312","2313","2314","2315","2316","2317","2318","2319","2320","2321","2323","2324","2325","2326","2327","2328","2329","2330","2331","2332","2334","2335","2336","2337","2338","2340","2341","2343","2347","2350","2353","2354","2357","2358","2359","2364","2366","2368","2369","2370","2371","2372","2373","2374","2376","2378","2383","2384","2385","2386","2387","2388","2389","2390","2391","2392","2393","2394","2395","2396","2397","2398","2399","2400","2401","2402","2403","2404","2405","2406","2407","2408","2409","2410","2411","2413","2414","2415","2416","2417","2418","2419","2422","2423","2425","2426","2427","2428","2430","2431","2432","2433","2434","2435","2436","2437","2438","2439","2440","2441","2442","2443","2444","2445","2446","2447","2448","2449","2450","2451","2452","2454","2456","2457","2458","2460","2462","2463","2464","2465","2466","2467","2468","2469","2472","2473","2474","2475","2476","2477","2478","2480","2481","2483","2484","2487","2489","2490","2491","2492","2493","2494","2496","2497","2498","2499","2500","2501","2502","2505","2506","2507","2508","2509","2510","2511","2512","2513","2514","2516","2517","2518","2519","2520","2522","2523","2524","2525","2526","2527","2528","2529","2531","2532","2533","2534","2536","2537","2538","2539","2540","2542","2543","2544","2545","2547","2550","2553","2555","2556","2558","2559","2560","2561","2562","2563","2564","2565","2566","2567","2571","2574","2575","2576","2577","2578","2585","2588","2589","2590","2594","2595","2596","2597","2598","2602","2604","2606","2607","2608","2609","2613","2614","2615","2616","2617","2618","2619","2620","2621","2623","2624","2625","2626","2627","2628","2629","2630","2631","2632","2633","2634","2635","2636","2637","2638","2639","2649","2651","2652","2657","2658","2659","2660","2661","2664","2665","2666","2667","2668","2669","2670","2671","2672","2673","2674","2675","2676","2677","2679","2680","2681","2684","2685","2687","2688","2692","2694","2695","2696","2697","2698","2699","2700","2701","2702","2703","2704","2705","2706","2707","2708","2709","2710","2711","2712","2714","2715","2716","2717","2718","2721","2722","2723","2725","2726","2727","2729","2730","2731","2732","2733","2734","2735","2737","2742","2743","2744","2745","2746","2747","2748","2749","2750","2751","2752","2753","2754","2755","2756","2757","2758","2759","2760","2761","2762","2763","2764","2765","2766","2767","2768","2770","2771","2772","2773","2775","2776","2777","2778","2779","2780","2781","2783","2784","2785","2786","2787","2788","2789","2790","2791","2792","2793","2794","2795","2796","2797","2798","2799","2800","2803","2804","2806","2807","2808","2809","2810","2811","2812","2813","2814","2815","2816","2817","2818","2819","2820","2821","2822","2823","2834","2835","2836","2837","2838","2839","2840","2842","2843","2844","2846","2848","2849","2850","2851","2855","2856","2857","2858","2859","2860","2861","2862","2863","2864","2865","2866","2867","2868","4000","4002","4004","4006","4008","4010","4012","4014","4016","4019","4020","4021","4022","4023","4024","4025","4026","4027","4028","4029","4030","4031","4032","4033","4034","4035","4036","4037","4038","4039","4040","4041","4042","4043","4044","4045","4046","4047","4048","4049","4050","4051","4052","4053","4054","4055","4056","4057","4058","4059","4060","4061","4062","4063","4064","4065","4066","4067","4068","4069","4070","4071","4072","4073","4074","4075","4076","4077","4078","4081","4082","4083","4084","4085","4090","4091","4092","4094","4095","4096","4097","4098","4099","4100","4101","4102","4103","4104","4105","4106","4107","4108","4109","4110","4118","4124","4125","4126","5001","5009","5010","5012","5014","5023","5024","5025","5033","5042","5047","5051","5052","5053","5054","5055","5056","5057","5058","5059","5061","5062","5063","5064","5065","5066","5067","5068","5069","5070","5071","5072","5073","5074","5075","5076","5077","5078","5079","5080","5081","5082","5083","5085","5088","5089","5090","5091","5092","5093","5094","5095","5096","5097","5098","5101","5102","5103","5104","5105","5107","5108","5109","5110","6044","6045","6046","6048","6050","6051","6053","6054","6059","6064","6082","6114","6131","6137","6140","6142","6188","6189","6200","6202","6229","6230","6231","6232","6233","6234","6236","6238","6258","6263","6266","6304","6305","6306","6307","6310","6369","6370","6377","6379","6504","6931","7009","7011","7012","7013","7014","7015","7017","7018","7020","7022","7023","7024","7025","7026","7029","7030","7031","7035","7036","7039","7040","7041","7042","7052","7053","7054","7055","7056","7057","7058","7059","7060","7061","8000","8001","8002","8003","8004","8005","8006","8008","8009","8010","8011","8012","8013","8016","8017","8021","8022","8023","8025","8026","8027","8028","8029","8030","8031","8032","8033","8034","8035","8036","8037","8038","8039","9005","9006","9007","9008","9009","9010","9011","9012","9013","9014","9015","9016","9017","9018","9019","9020","9021","9022","9023","9025","9026","9027","9028","9029","9030","9031","9032","9033","9034","9035","9036","9037","17000","17001","17002","17005","17006","17007","17008","17010","17011","17012","17013","17014","17015","17016","17017","17018","17021","18000","18002","18003","18006","18007","18009","18010","18011","18012","18013","18014","18015","18016","18017","18018","18019","18024","18026","18027","18028","18029","18030","18031","18032","18033","18035","18036","18037","18038","18039","18041","18042","18043","18045","18046","18047","18048","18049","18050","18051","18053","18054","18055","18056","80005","80003","80008","80007"]}
Info 101 [10:32:23.568] request:
{
"seq": 17,
"type": "request",
"command": "configure",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"formatOptions": {
"tabSize": 4,
"indentSize": 4,
"convertTabsToSpaces": true,
"newLineCharacter": "\n",
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterConstructor": false,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"insertSpaceBeforeFunctionParenthesis": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true,
"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"insertSpaceAfterTypeAssertion": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false,
"semicolons": "ignore",
"indentSwitchCase": true
},
"preferences": {
"quotePreference": "auto",
"importModuleSpecifierEnding": "auto",
"jsxAttributeCompletionStyle": "auto",
"allowTextChangesInNewFiles": true,
"providePrefixAndSuffixTextForRename": true,
"allowRenameOfImportPath": true,
"includeAutomaticOptionalChainCompletions": true,
"provideRefactorNotApplicableReason": true,
"generateReturnInDocTemplate": true,
"includeCompletionsForImportStatements": true,
"includeCompletionsWithSnippetText": true,
"includeCompletionsWithClassMemberSnippets": true,
"includeCompletionsWithObjectLiteralMethodSnippets": true,
"autoImportFileExcludePatterns": [],
"preferTypeOnlyAutoImports": false,
"useLabelDetailsInCompletionEntries": true,
"allowIncompleteCompletions": true,
"displayPartsForJSDoc": true,
"disableLineTextInReferences": true,
"interactiveInlayHints": true,
"includeInlayParameterNameHints": "none",
"includeInlayParameterNameHintsWhenArgumentMatchesName": false,
"includeInlayFunctionParameterTypeHints": false,
"includeInlayVariableTypeHints": false,
"includeInlayVariableTypeHintsWhenTypeMatchesName": false,
"includeInlayPropertyDeclarationTypeHints": false,
"includeInlayFunctionLikeReturnTypeHints": false,
"includeInlayEnumMemberValueHints": false
}
}
}
Info 102 [10:32:23.568] Host configuration update for file /home/jabaile/work/pprof-it/src/index.ts
Info 103 [10:32:23.568] response:
{"seq":0,"type":"response","command":"configure","request_seq":17,"success":true}
Perf 104 [10:32:23.568] 17::configure: async elapsed time (in milliseconds) 0.3412
Info 105 [10:32:23.568] request:
{
"seq": 18,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 106 [10:32:23.569] 18::geterr: async elapsed time (in milliseconds) 0.6166
Info 107 [10:32:23.570] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 108 [10:32:23.609] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":18}}
Info 109 [10:32:23.610] request:
{
"seq": 19,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 110 [10:32:23.615] 19::getApplicableRefactors: elapsed time (in milliseconds) 5.7006
Info 111 [10:32:23.615] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":19,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 112 [10:32:23.802] request:
{
"seq": 20,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 113 [10:32:23.802] 20::geterr: async elapsed time (in milliseconds) 0.1222
Info 114 [10:32:23.804] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 115 [10:32:23.867] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 116 [10:32:23.870] event:
{"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[{"start":{"line":7,"offset":19},"end":{"line":7,"offset":25},"text":"'parent' is deprecated.","code":6385,"category":"suggestion","reportsDeprecated":true,"relatedInformation":[{"span":{"start":{"line":320,"offset":17},"end":{"line":320,"offset":100},"file":"/home/jabaile/work/pprof-it/node_modules/@types/node/globals.d.ts"},"message":"The declaration was marked as deprecated here.","category":"error","code":2798}]}]}}
Info 117 [10:32:23.870] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":20}}
Info 118 [10:32:24.199] request:
{
"seq": 21,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 119 [10:32:24.200] 21::getApplicableRefactors: elapsed time (in milliseconds) 0.6167
Info 120 [10:32:24.200] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":21,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 121 [10:32:25.581] request:
{
"seq": 22,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 122 [10:32:25.581] 22::getApplicableRefactors: elapsed time (in milliseconds) 0.9452
Info 123 [10:32:25.582] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":22,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 124 [10:32:26.556] request:
{
"seq": 23,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 125 [10:32:26.557] 23::getApplicableRefactors: elapsed time (in milliseconds) 1.0603
Info 126 [10:32:26.557] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":23,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 127 [10:32:26.558] request:
{
"seq": 24,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 128 [10:32:26.558] 24::getApplicableRefactors: elapsed time (in milliseconds) 0.5637
Info 129 [10:32:26.558] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":24,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 130 [10:32:26.559] request:
{
"seq": 25,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 195,
"startOffset": 72,
"endLine": 195,
"endOffset": 72,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 131 [10:32:26.559] 25::getApplicableRefactors: elapsed time (in milliseconds) 0.5463
Info 132 [10:32:26.559] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":25,"success":true,"body":[{"name":"Convert export","description":"Convert default export to named export","actions":[{"name":"Convert default export to named export","description":"Convert default export to named export","kind":"refactor.rewrite.export.named","notApplicableReason":"Could not find export statement"},{"name":"Convert named export to default export","description":"Convert named export to default export","kind":"refactor.rewrite.export.default","notApplicableReason":"Could not find export statement"}]},{"name":"Convert import","description":"Convert namespace import to named imports","actions":[{"name":"Convert namespace import to named imports","description":"Convert namespace import to named imports","kind":"refactor.rewrite.import.named","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to default import","actions":[{"name":"Convert named imports to default import","description":"Convert named imports to default import","kind":"refactor.rewrite.import.default","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Convert import","description":"Convert named imports to namespace import","actions":[{"name":"Convert named imports to namespace import","description":"Convert named imports to namespace import","kind":"refactor.rewrite.import.namespace","notApplicableReason":"Selection is not an import declaration."}]},{"name":"Extract type","description":"Extract type","actions":[{"name":"Extract to typedef","description":"Extract to typedef","kind":"refactor.extract.typedef","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to type alias","description":"Extract to type alias","kind":"refactor.extract.type","notApplicableReason":"Selection is not a valid type node"},{"name":"Extract to interface","description":"Extract to interface","kind":"refactor.extract.interface","notApplicableReason":"Selection is not a valid type node"}]},{"name":"Move to a new file","description":"Move to a new file","actions":[{"name":"Move to a new file","description":"Move to a new file","kind":"refactor.move.newFile","range":{"start":{"line":177,"offset":1},"end":{"line":226,"offset":2}}}]},{"name":"Add or remove braces in an arrow function","description":"Add or remove braces in an arrow function","actions":[{"name":"Add braces to arrow function","description":"Add braces to arrow function","kind":"refactor.rewrite.arrow.braces.add","notApplicableReason":"Containing function is not an arrow function"},{"name":"Remove braces from arrow function","description":"Remove braces from arrow function","kind":"refactor.rewrite.arrow.braces.remove","notApplicableReason":"Containing function is not an arrow function"}]},{"name":"Convert to template string","description":"Convert to template string","actions":[{"name":"Convert to template string","description":"Convert to template string","kind":"refactor.rewrite.string","notApplicableReason":"Can only convert string concatenations and string literals"}]},{"name":"Extract Symbol","description":"Extract function","actions":[{"name":"Extract Function","description":"Extract function","kind":"refactor.extract.function","notApplicableReason":"Cannot extract empty range."}]},{"name":"Extract Symbol","description":"Extract constant","actions":[{"name":"Extract Constant","description":"Extract constant","kind":"refactor.extract.constant","notApplicableReason":"Cannot extract empty range."}]},{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","actions":[{"name":"Generate 'get' and 'set' accessors","description":"Generate 'get' and 'set' accessors","kind":"refactor.rewrite.property.generateAccessors","notApplicableReason":"Could not find property for which to generate accessor"}]},{"name":"Infer function return type","description":"Infer function return type","actions":[{"name":"Infer function return type","description":"Infer function return type","kind":"refactor.rewrite.function.returnType","notApplicableReason":"Return type must be inferred from a function"}]}]}
Info 133 [10:34:27.494] request:
{
"seq": 26,
"type": "request",
"command": "encodedSemanticClassifications-full",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"start": 4434,
"length": 2691,
"format": "2020"
}
}
Perf 134 [10:34:27.501] 26::encodedSemanticClassifications-full: elapsed time (in milliseconds) 6.8913
Info 135 [10:34:27.501] response:
{"seq":0,"type":"response","command":"encodedSemanticClassifications-full","request_seq":26,"success":true,"body":{"spans":[4446,3,2817,4450,7,1793,4483,7,1024,4491,7,2088,4510,7,2048,4518,5,3072,4539,7,1792,4564,9,2057,4576,7,2048,4584,3,3072,4592,4,2056,4597,3,2568,4612,12,2817,4625,1,1793,4646,1,1792,4648,10,3088,4659,9,2056,4688,1,1792,4690,5,3088,4696,9,2056,4706,6,2584,4732,1,1792,4747,11,2817,4759,1,1793,4792,5,272,4820,1,1792,4835,14,2057,4856,3,272,4888,8,2817,4897,1,1793,4926,9,2081,4938,14,2056,4953,3,3088,4957,1,1792,4969,9,2080,5004,9,2080,5029,14,2056,5044,4,2584,5060,3,2816,5079,1,1792,5089,9,2080,5112,14,2056,5127,3,3088,5131,1,1792,5134,9,2080,5163,9,2080,5192,8,257,5215,8,2561,5226,7,256,5260,5,1793,5267,12,512,5289,12,1793,5328,5,3073,5367,5,3073,5376,7,256,5390,4,3073,5418,8,2560,5434,5,3072,5454,8,3073,5481,6,2816,5493,8,2560,5519,3,2089,5529,3,272,5668,6,2816,5680,8,2560,5689,8,2560,5719,1,2089,5729,8,2560,5738,8,2560,5768,8,2089,5779,1,2088,5781,8,2560,5807,8,2088,5846,8,2088,5891,3,2088,5895,3,3088,5899,8,2088,5965,9,272,5999,8,2088,6063,6,2816,6075,8,2560,6084,11,2560,6117,5,2089,6126,3,2088,6130,6,3088,6160,1,2089,6169,8,2560,6178,11,2560,6190,7,2560,6198,5,2088,6370,1,2088,6375,4,2056,6380,10,3072,6391,1,2088,6418,8,2560,6427,11,2560,6439,7,2560,6447,5,2088,6456,8,2816,6465,1,2088,6504,5,3073,6528,6,2816,6540,8,2560,6559,3,2816,6579,5,2560,6599,12,2816,6617,12,2560,6649,6,2089,6664,10,2816,6680,8,2560,6699,2,1024,6702,13,2816,6721,12,2560,6735,6,2088,6759,12,257,6780,8,256,6825,12,512,6838,4,2312,6844,7,1024,6852,7,2088,6873,5,3073,6903,4,2056,6908,5,3072,6914,7,1024,6922,12,2088,6936,7,1024,6944,14,2088,6982,5,3073,6991,7,256,7022,4,2056,7027,7,3072,7053,23,2057,7091,23,2057],"endOfLineState":0}}
Info 136 [10:34:27.958] request:
{
"seq": 27,
"type": "request",
"command": "quickinfo",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"line": 187,
"offset": 31
}
}
Perf 137 [10:34:27.967] 27::quickinfo: elapsed time (in milliseconds) 8.8665
Info 138 [10:34:27.967] response:
{"seq":0,"type":"response","command":"quickinfo","request_seq":27,"success":true,"body":{"kind":"method","kindModifiers":"protected,abstract","start":{"line":187,"offset":30},"end":{"line":187,"offset":35},"displayString":"(method) Profiler._stop(): Profile","documentation":[],"tags":[]}}
Info 139 [10:34:33.203] request:
{
"seq": 28,
"type": "request",
"command": "documentHighlights",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"line": 195,
"offset": 72,
"filesToSearch": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 140 [10:34:33.204] 28::documentHighlights: elapsed time (in milliseconds) 0.8229
Info 141 [10:34:33.204] response:
{"seq":0,"type":"response","command":"documentHighlights","request_seq":28,"success":true,"body":[]}
Info 142 [10:34:33.606] request:
{
"seq": 29,
"type": "request",
"command": "documentHighlights",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"line": 195,
"offset": 72,
"filesToSearch": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 143 [10:34:33.606] 29::documentHighlights: elapsed time (in milliseconds) 0.1860
Info 144 [10:34:33.606] response:
{"seq":0,"type":"response","command":"documentHighlights","request_seq":29,"success":true,"body":[]}
Info 145 [10:35:20.795] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 146 [10:35:20.795] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation
Info 147 [10:35:20.795] Elapsed:: 0.21729999780654907ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 148 [10:35:20.795] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 149 [10:35:20.795] Elapsed:: 0.2240999937057495ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 150 [10:35:20.795] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 151 [10:35:20.795] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 152 [10:35:20.795] Elapsed:: 0.12949997186660767ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: File location affecting resolution
Info 153 [10:35:20.795] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 154 [10:35:20.796] Elapsed:: 0.1534000039100647ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 155 [10:35:21.795] Running: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation
Info 156 [10:35:21.796] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json
Info 157 [10:35:21.796] Scheduled: *ensureProjectForOpenFiles*
Info 158 [10:35:22.046] Running: /home/jabaile/work/pprof-it/tsconfig.json
Info 159 [10:35:22.046] Starting updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json
Info 160 [10:35:22.078] Finishing updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json projectStateVersion: 2 projectProgramVersion: 1 structureChanged: true structureIsReused:: SafeModules Elapsed: 31.98120003938675ms
Info 161 [10:35:22.078] Different program with same set of files
Info 162 [10:35:22.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 163 [10:35:22.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE
Info 164 [10:35:22.540] Elapsed:: 0.5095999836921692ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 165 [10:35:22.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 166 [10:35:22.540] Elapsed:: 0.17219996452331543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 167 [10:35:22.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 168 [10:35:22.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation
Info 169 [10:35:22.541] Elapsed:: 0.21380001306533813ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 170 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 171 [10:35:22.541] Elapsed:: 0.03700000047683716ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 172 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 173 [10:35:22.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js
Info 174 [10:35:22.541] Elapsed:: 0.12250000238418579ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 175 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 176 [10:35:22.541] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 177 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 178 [10:35:22.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 179 [10:35:22.541] Elapsed:: 0.0549999475479126ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 180 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 181 [10:35:22.541] Elapsed:: 0.016799986362457275ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 182 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 183 [10:35:22.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json
Info 184 [10:35:22.541] Elapsed:: 0.041400015354156494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 185 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 186 [10:35:22.541] Elapsed:: 0.007200002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 187 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 188 [10:35:22.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 189 [10:35:22.541] Elapsed:: 0.13670003414154053ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 190 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 191 [10:35:22.541] Elapsed:: 0.017200052738189697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 192 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 193 [10:35:22.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md
Info 194 [10:35:22.541] Elapsed:: 0.03679996728897095ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 195 [10:35:22.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 196 [10:35:22.541] Elapsed:: 0.0054000020027160645ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 197 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 198 [10:35:22.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 199 [10:35:22.542] Elapsed:: 0.06319999694824219ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 200 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 201 [10:35:22.542] Elapsed:: 0.01940000057220459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 202 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 203 [10:35:22.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range
Info 204 [10:35:22.542] Elapsed:: 0.13090002536773682ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 205 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 206 [10:35:22.542] Elapsed:: 0.0615999698638916ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 207 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 208 [10:35:22.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 209 [10:35:22.542] Elapsed:: 0.12050002813339233ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 210 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 211 [10:35:22.542] Elapsed:: 0.028599977493286133ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/to-regex-range/to-regex-range :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 212 [10:35:22.542] sysLog:: /home/jabaile/work/pprof-it/node_modules/to-regex-range:: Changing watcher to MissingFileSystemEntryWatcher
Info 213 [10:35:22.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 214 [10:35:22.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE
Info 215 [10:35:22.543] Elapsed:: 0.06299996376037598ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 216 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 217 [10:35:22.543] Elapsed:: 0.042699992656707764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 218 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 219 [10:35:22.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 220 [10:35:22.543] Elapsed:: 0.12000000476837158ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 221 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 222 [10:35:22.543] Elapsed:: 0.02390003204345703ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 223 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 224 [10:35:22.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js
Info 225 [10:35:22.543] Elapsed:: 0.04220002889633179ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 226 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 227 [10:35:22.543] Elapsed:: 0.005099952220916748ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 228 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 229 [10:35:22.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 230 [10:35:22.543] Elapsed:: 0.04240000247955322ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 231 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 232 [10:35:22.543] Elapsed:: 0.07899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 233 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 234 [10:35:22.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js
Info 235 [10:35:22.543] Elapsed:: 0.06959998607635498ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 236 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 237 [10:35:22.543] Elapsed:: 0.0054000020027160645ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 238 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 239 [10:35:22.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 240 [10:35:22.543] Elapsed:: 0.04229998588562012ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 241 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 242 [10:35:22.543] Elapsed:: 0.016200006008148193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 243 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 244 [10:35:22.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json
Info 245 [10:35:22.543] Elapsed:: 0.04280000925064087ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 246 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 247 [10:35:22.543] Elapsed:: 0.005899965763092041ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 248 [10:35:22.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 249 [10:35:22.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 250 [10:35:22.544] Elapsed:: 0.050000011920928955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 251 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 252 [10:35:22.544] Elapsed:: 0.017000019550323486ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 253 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 254 [10:35:22.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js
Info 255 [10:35:22.544] Elapsed:: 0.03620004653930664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 256 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 257 [10:35:22.544] Elapsed:: 0.006699979305267334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 258 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 259 [10:35:22.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 260 [10:35:22.544] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 261 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 262 [10:35:22.544] Elapsed:: 0.011299967765808105ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/git-host-info.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 263 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 264 [10:35:22.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md
Info 265 [10:35:22.544] Elapsed:: 0.030600011348724365ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 266 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 267 [10:35:22.544] Elapsed:: 0.0042999982833862305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 268 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 269 [10:35:22.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 270 [10:35:22.544] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 271 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 272 [10:35:22.544] Elapsed:: 0.07639998197555542ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 273 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 274 [10:35:22.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md
Info 275 [10:35:22.544] Elapsed:: 0.03780001401901245ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 276 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 277 [10:35:22.544] Elapsed:: 0.004700005054473877ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 278 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 279 [10:35:22.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 280 [10:35:22.544] Elapsed:: 0.06970000267028809ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 281 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 282 [10:35:22.544] Elapsed:: 0.018899977207183838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 283 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 284 [10:35:22.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info
Info 285 [10:35:22.544] Elapsed:: 0.05619996786117554ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 286 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 287 [10:35:22.544] Elapsed:: 0.03420001268386841ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 288 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 289 [10:35:22.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 290 [10:35:22.544] Elapsed:: 0.03659999370574951ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 291 [10:35:22.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 292 [10:35:22.544] Elapsed:: 0.010800004005432129ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hosted-git-info/hosted-git-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 293 [10:35:22.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/hosted-git-info:: Changing watcher to MissingFileSystemEntryWatcher
Info 294 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 295 [10:35:22.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs
Info 296 [10:35:22.545] Elapsed:: 0.06510001420974731ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 297 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 298 [10:35:22.545] Elapsed:: 0.0065000057220458984ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 299 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 300 [10:35:22.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 301 [10:35:22.545] Elapsed:: 0.03299999237060547ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 302 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 303 [10:35:22.545] Elapsed:: 0.012899994850158691ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/espree.cjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 304 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 305 [10:35:22.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/espree/dist/dist
Info 306 [10:35:22.545] Elapsed:: 0.10519999265670776ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 307 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 308 [10:35:22.545] Elapsed:: 0.03789997100830078ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 309 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 310 [10:35:22.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 311 [10:35:22.545] Elapsed:: 0.034399986267089844ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 312 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 313 [10:35:22.545] Elapsed:: 0.010899960994720459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 314 [10:35:22.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/espree/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 315 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 316 [10:35:22.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/espree/dist
Info 317 [10:35:22.545] Elapsed:: 0.06360000371932983ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 318 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 319 [10:35:22.545] Elapsed:: 0.03560000658035278ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 320 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 321 [10:35:22.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 322 [10:35:22.545] Elapsed:: 0.03289997577667236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 323 [10:35:22.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 324 [10:35:22.545] Elapsed:: 0.010999977588653564ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 325 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 326 [10:35:22.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/espree/lib
Info 327 [10:35:22.546] Elapsed:: 0.055500030517578125ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 328 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 329 [10:35:22.546] Elapsed:: 0.03270000219345093ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 330 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 331 [10:35:22.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 332 [10:35:22.546] Elapsed:: 0.03510004281997681ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 333 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 334 [10:35:22.546] Elapsed:: 0.01759999990463257ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 335 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 336 [10:35:22.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/espree/espree.js
Info 337 [10:35:22.546] Elapsed:: 0.024100005626678467ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 338 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 339 [10:35:22.546] Elapsed:: 0.0040000081062316895ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 340 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 341 [10:35:22.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 342 [10:35:22.546] Elapsed:: 0.02820003032684326ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 343 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 344 [10:35:22.546] Elapsed:: 0.010500013828277588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 345 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 346 [10:35:22.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/espree/LICENSE
Info 347 [10:35:22.546] Elapsed:: 0.04910004138946533ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 348 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 349 [10:35:22.546] Elapsed:: 0.030800044536590576ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 350 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 351 [10:35:22.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 352 [10:35:22.546] Elapsed:: 0.030900001525878906ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 353 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 354 [10:35:22.546] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 355 [10:35:22.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 356 [10:35:22.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/espree/package.json
Info 357 [10:35:22.547] Elapsed:: 0.02799999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 358 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 359 [10:35:22.547] Elapsed:: 0.0040000081062316895ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 360 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 361 [10:35:22.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 362 [10:35:22.547] Elapsed:: 0.033100008964538574ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 363 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 364 [10:35:22.547] Elapsed:: 0.010700047016143799ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 365 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 366 [10:35:22.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/espree/README.md
Info 367 [10:35:22.547] Elapsed:: 0.028000056743621826ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 368 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 369 [10:35:22.547] Elapsed:: 0.0037999749183654785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 370 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 371 [10:35:22.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 372 [10:35:22.547] Elapsed:: 0.034600019454956055ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 373 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 374 [10:35:22.547] Elapsed:: 0.04319995641708374ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 375 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 376 [10:35:22.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/espree/espree
Info 377 [10:35:22.547] Elapsed:: 0.13199996948242188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 378 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 379 [10:35:22.547] Elapsed:: 0.03689998388290405ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 380 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 381 [10:35:22.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 382 [10:35:22.547] Elapsed:: 0.041400015354156494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 383 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 384 [10:35:22.547] Elapsed:: 0.010699987411499023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/espree/espree :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 385 [10:35:22.547] sysLog:: /home/jabaile/work/pprof-it/node_modules/espree:: Changing watcher to MissingFileSystemEntryWatcher
Info 386 [10:35:22.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 387 [10:35:22.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js
Info 388 [10:35:22.548] Elapsed:: 0.03259998559951782ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 389 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 390 [10:35:22.548] Elapsed:: 0.003500044345855713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 391 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 392 [10:35:22.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 393 [10:35:22.548] Elapsed:: 0.031199991703033447ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 394 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 395 [10:35:22.548] Elapsed:: 0.012199997901916504ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/callBound.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 396 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 397 [10:35:22.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js
Info 398 [10:35:22.548] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 399 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 400 [10:35:22.548] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 401 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 402 [10:35:22.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 403 [10:35:22.548] Elapsed:: 0.027800023555755615ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 404 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 405 [10:35:22.548] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 406 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 407 [10:35:22.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/call-bind/test/test
Info 408 [10:35:22.548] Elapsed:: 0.044299960136413574ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 409 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 410 [10:35:22.548] Elapsed:: 0.03470003604888916ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 411 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 412 [10:35:22.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 413 [10:35:22.548] Elapsed:: 0.027099967002868652ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 414 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 415 [10:35:22.548] Elapsed:: 0.010999977588653564ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 416 [10:35:22.548] sysLog:: /home/jabaile/work/pprof-it/node_modules/call-bind/test:: Changing watcher to MissingFileSystemEntryWatcher
Info 417 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 418 [10:35:22.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/call-bind/test
Info 419 [10:35:22.548] Elapsed:: 0.04929995536804199ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 420 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 421 [10:35:22.548] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 422 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 423 [10:35:22.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 424 [10:35:22.548] Elapsed:: 0.03569996356964111ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 425 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 426 [10:35:22.548] Elapsed:: 0.01639997959136963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 427 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 428 [10:35:22.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/package.json
Info 429 [10:35:22.548] Elapsed:: 0.03540003299713135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 430 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 431 [10:35:22.548] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 432 [10:35:22.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 433 [10:35:22.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 434 [10:35:22.549] Elapsed:: 0.029799997806549072ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 435 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 436 [10:35:22.549] Elapsed:: 0.013499975204467773ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 437 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 438 [10:35:22.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc
Info 439 [10:35:22.549] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 440 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 441 [10:35:22.549] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 442 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 443 [10:35:22.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 444 [10:35:22.549] Elapsed:: 0.027699947357177734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 445 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 446 [10:35:22.549] Elapsed:: 0.010300040245056152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 447 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 448 [10:35:22.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/README.md
Info 449 [10:35:22.549] Elapsed:: 0.021699965000152588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 450 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 451 [10:35:22.549] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 452 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 453 [10:35:22.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 454 [10:35:22.549] Elapsed:: 0.028899967670440674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 455 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 456 [10:35:22.549] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 457 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 458 [10:35:22.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc
Info 459 [10:35:22.549] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 460 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 461 [10:35:22.549] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 462 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 463 [10:35:22.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 464 [10:35:22.549] Elapsed:: 0.024599969387054443ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 465 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 466 [10:35:22.549] Elapsed:: 0.010699987411499023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 467 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 468 [10:35:22.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore
Info 469 [10:35:22.549] Elapsed:: 0.0209999680519104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 470 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 471 [10:35:22.549] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 472 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 473 [10:35:22.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 474 [10:35:22.549] Elapsed:: 0.02499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 475 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 476 [10:35:22.549] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 477 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 478 [10:35:22.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md
Info 479 [10:35:22.549] Elapsed:: 0.01940000057220459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 480 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 481 [10:35:22.549] Elapsed:: 0.010699987411499023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 482 [10:35:22.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 483 [10:35:22.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 484 [10:35:22.550] Elapsed:: 0.6104000210762024ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 485 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 486 [10:35:22.550] Elapsed:: 0.02899998426437378ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 487 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 488 [10:35:22.550] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind
Info 489 [10:35:22.550] Elapsed:: 0.05540001392364502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 490 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 491 [10:35:22.550] Elapsed:: 0.04109996557235718ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 492 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 493 [10:35:22.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 494 [10:35:22.550] Elapsed:: 0.0372999906539917ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 495 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 496 [10:35:22.550] Elapsed:: 0.012899994850158691ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/call-bind/call-bind :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 497 [10:35:22.550] sysLog:: /home/jabaile/work/pprof-it/node_modules/call-bind:: Changing watcher to MissingFileSystemEntryWatcher
Info 498 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 499 [10:35:22.550] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml
Info 500 [10:35:22.550] Elapsed:: 0.03549998998641968ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 501 [10:35:22.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 502 [10:35:22.550] Elapsed:: 0.003800034523010254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 503 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 504 [10:35:22.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 505 [10:35:22.551] Elapsed:: 0.03249996900558472ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 506 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 507 [10:35:22.551] Elapsed:: 0.012299954891204834ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.eslintrc.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 508 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 509 [10:35:22.551] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark
Info 510 [10:35:22.551] Elapsed:: 0.05260002613067627ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 511 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 512 [10:35:22.551] Elapsed:: 0.04219996929168701ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 513 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 514 [10:35:22.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 515 [10:35:22.551] Elapsed:: 0.03240001201629639ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 516 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 517 [10:35:22.551] Elapsed:: 0.01109999418258667ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/benchmark :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 518 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 519 [10:35:22.551] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE
Info 520 [10:35:22.551] Elapsed:: 0.04180002212524414ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 521 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 522 [10:35:22.551] Elapsed:: 0.031899988651275635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 523 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 524 [10:35:22.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 525 [10:35:22.551] Elapsed:: 0.02820003032684326ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 526 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 527 [10:35:22.551] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 528 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 529 [10:35:22.551] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml
Info 530 [10:35:22.551] Elapsed:: 0.026699960231781006ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 531 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 532 [10:35:22.551] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 533 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 534 [10:35:22.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 535 [10:35:22.551] Elapsed:: 0.02670001983642578ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 536 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 537 [10:35:22.551] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 538 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 539 [10:35:22.551] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js
Info 540 [10:35:22.551] Elapsed:: 0.03659999370574951ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 541 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 542 [10:35:22.551] Elapsed:: 0.004499971866607666ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 543 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 544 [10:35:22.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 545 [10:35:22.551] Elapsed:: 0.029799997806549072ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 546 [10:35:22.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 547 [10:35:22.552] Elapsed:: 0.010099947452545166ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 548 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 549 [10:35:22.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test
Info 550 [10:35:22.552] Elapsed:: 0.04309999942779541ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 551 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 552 [10:35:22.552] Elapsed:: 0.032199978828430176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 553 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 554 [10:35:22.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 555 [10:35:22.552] Elapsed:: 0.029399991035461426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 556 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 557 [10:35:22.552] Elapsed:: 0.01100003719329834ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 558 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 559 [10:35:22.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json
Info 560 [10:35:22.552] Elapsed:: 0.02679997682571411ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 561 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 562 [10:35:22.552] Elapsed:: 0.0042999982833862305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 563 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 564 [10:35:22.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 565 [10:35:22.552] Elapsed:: 0.025599956512451172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 566 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 567 [10:35:22.552] Elapsed:: 0.010299980640411377ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 568 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 569 [10:35:22.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example
Info 570 [10:35:22.552] Elapsed:: 0.03889995813369751ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 571 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 572 [10:35:22.552] Elapsed:: 0.03029996156692505ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 573 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 574 [10:35:22.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 575 [10:35:22.552] Elapsed:: 0.027200043201446533ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 576 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 577 [10:35:22.552] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 578 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 579 [10:35:22.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md
Info 580 [10:35:22.552] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 581 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 582 [10:35:22.552] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 583 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 584 [10:35:22.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 585 [10:35:22.552] Elapsed:: 0.022799968719482422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 586 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 587 [10:35:22.552] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 588 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 589 [10:35:22.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts
Info 590 [10:35:22.552] Elapsed:: 0.04460000991821289ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 591 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 592 [10:35:22.552] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 593 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 594 [10:35:22.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 595 [10:35:22.552] Elapsed:: 0.052599966526031494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 596 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 597 [10:35:22.552] Elapsed:: 0.01109999418258667ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 598 [10:35:22.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 599 [10:35:22.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify
Info 600 [10:35:22.553] Elapsed:: 0.039900004863739014ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 601 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 602 [10:35:22.553] Elapsed:: 0.03530001640319824ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 603 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 604 [10:35:22.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 605 [10:35:22.553] Elapsed:: 0.0372999906539917ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 606 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 607 [10:35:22.553] Elapsed:: 0.013000011444091797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify/fast-json-stable-stringify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 608 [10:35:22.553] sysLog:: /home/jabaile/work/pprof-it/node_modules/fast-json-stable-stringify:: Changing watcher to MissingFileSystemEntryWatcher
Info 609 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 610 [10:35:22.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs
Info 611 [10:35:22.553] Elapsed:: 0.033399999141693115ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 612 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 613 [10:35:22.553] Elapsed:: 0.0037999749183654785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 614 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 615 [10:35:22.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 616 [10:35:22.553] Elapsed:: 0.05199998617172241ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 617 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 618 [10:35:22.553] Elapsed:: 0.011999964714050293ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 619 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 620 [10:35:22.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map
Info 621 [10:35:22.553] Elapsed:: 0.02799999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 622 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 623 [10:35:22.553] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 624 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 625 [10:35:22.553] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 626 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 627 [10:35:22.553] Elapsed:: 0.007800042629241943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 628 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 629 [10:35:22.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js
Info 630 [10:35:22.553] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 631 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 632 [10:35:22.553] Elapsed:: 0.003399968147277832ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 633 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 634 [10:35:22.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 635 [10:35:22.553] Elapsed:: 0.04899996519088745ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 636 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 637 [10:35:22.553] Elapsed:: 0.016000032424926758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.esm.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 638 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 639 [10:35:22.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map
Info 640 [10:35:22.553] Elapsed:: 0.024299979209899902ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 641 [10:35:22.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 642 [10:35:22.553] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 643 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 644 [10:35:22.554] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 645 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 646 [10:35:22.554] Elapsed:: 0.0076999664306640625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 647 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 648 [10:35:22.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts
Info 649 [10:35:22.554] Elapsed:: 0.06599998474121094ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 650 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 651 [10:35:22.554] Elapsed:: 0.0055999755859375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 652 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 653 [10:35:22.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 654 [10:35:22.554] Elapsed:: 0.030600011348724365ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 655 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 656 [10:35:22.554] Elapsed:: 0.011199951171875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.mts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 657 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 658 [10:35:22.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js
Info 659 [10:35:22.554] Elapsed:: 0.02679997682571411ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 660 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 661 [10:35:22.554] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 662 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 663 [10:35:22.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 664 [10:35:22.554] Elapsed:: 0.02959996461868286ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 665 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 666 [10:35:22.554] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 667 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 668 [10:35:22.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts
Info 669 [10:35:22.554] Elapsed:: 0.042799949645996094ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 670 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 671 [10:35:22.554] Elapsed:: 0.003899991512298584ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 672 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 673 [10:35:22.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 674 [10:35:22.554] Elapsed:: 0.02619999647140503ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 675 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 676 [10:35:22.554] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/changesets-config.cjs.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 677 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 678 [10:35:22.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations
Info 679 [10:35:22.554] Elapsed:: 0.03839999437332153ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 680 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 681 [10:35:22.554] Elapsed:: 0.04319995641708374ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 682 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 683 [10:35:22.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 684 [10:35:22.554] Elapsed:: 0.027199983596801758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 685 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 686 [10:35:22.554] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/declarations :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 687 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 688 [10:35:22.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist
Info 689 [10:35:22.554] Elapsed:: 0.06620001792907715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 690 [10:35:22.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 691 [10:35:22.554] Elapsed:: 0.08700001239776611ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 692 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 693 [10:35:22.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 694 [10:35:22.555] Elapsed:: 0.051300048828125ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 695 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 696 [10:35:22.555] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 697 [10:35:22.555] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 698 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 699 [10:35:22.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist
Info 700 [10:35:22.555] Elapsed:: 0.04780000448226929ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 701 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 702 [10:35:22.555] Elapsed:: 0.03239995241165161ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 703 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 704 [10:35:22.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 705 [10:35:22.555] Elapsed:: 0.03209996223449707ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 706 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 707 [10:35:22.555] Elapsed:: 0.011799991130828857ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 708 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 709 [10:35:22.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json
Info 710 [10:35:22.555] Elapsed:: 0.05110001564025879ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 711 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 712 [10:35:22.555] Elapsed:: 0.0045999884605407715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 713 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 714 [10:35:22.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 715 [10:35:22.555] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 716 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 717 [10:35:22.555] Elapsed:: 0.010500013828277588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 718 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 719 [10:35:22.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md
Info 720 [10:35:22.555] Elapsed:: 0.023299992084503174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 721 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 722 [10:35:22.555] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 723 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 724 [10:35:22.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 725 [10:35:22.555] Elapsed:: 0.02799999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 726 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 727 [10:35:22.555] Elapsed:: 0.009400010108947754ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 728 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 729 [10:35:22.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json
Info 730 [10:35:22.555] Elapsed:: 0.029700040817260742ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 731 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 732 [10:35:22.555] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 733 [10:35:22.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 734 [10:35:22.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 735 [10:35:22.556] Elapsed:: 0.030999958515167236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 736 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 737 [10:35:22.556] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/schema.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 738 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 739 [10:35:22.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config/config
Info 740 [10:35:22.556] Elapsed:: 0.1347000002861023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 741 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 742 [10:35:22.556] Elapsed:: 0.028199970722198486ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 743 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 744 [10:35:22.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 745 [10:35:22.556] Elapsed:: 0.03259998559951782ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 746 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 747 [10:35:22.556] Elapsed:: 0.010599970817565918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 748 [10:35:22.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/config:: Changing watcher to MissingFileSystemEntryWatcher
Info 749 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 750 [10:35:22.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/config
Info 751 [10:35:22.556] Elapsed:: 0.04909998178482056ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 752 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 753 [10:35:22.556] Elapsed:: 0.02069997787475586ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 754 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 755 [10:35:22.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 756 [10:35:22.556] Elapsed:: 0.03509998321533203ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 757 [10:35:22.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 758 [10:35:22.556] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 759 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 760 [10:35:22.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/git
Info 761 [10:35:22.557] Elapsed:: 0.05230003595352173ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 762 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 763 [10:35:22.557] Elapsed:: 0.024500012397766113ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 764 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 765 [10:35:22.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 766 [10:35:22.557] Elapsed:: 0.03220003843307495ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 767 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 768 [10:35:22.557] Elapsed:: 0.010700047016143799ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 769 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 770 [10:35:22.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan
Info 771 [10:35:22.557] Elapsed:: 0.039299964904785156ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 772 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 773 [10:35:22.557] Elapsed:: 0.02030003070831299ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 774 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 775 [10:35:22.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 776 [10:35:22.557] Elapsed:: 0.028400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 777 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 778 [10:35:22.557] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/apply-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 779 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 780 [10:35:22.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/parse
Info 781 [10:35:22.557] Elapsed:: 0.037400007247924805ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 782 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 783 [10:35:22.557] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 784 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 785 [10:35:22.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 786 [10:35:22.557] Elapsed:: 0.030900001525878906ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 787 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 788 [10:35:22.557] Elapsed:: 0.010700047016143799ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/parse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 789 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 790 [10:35:22.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/errors
Info 791 [10:35:22.557] Elapsed:: 0.03819996118545532ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 792 [10:35:22.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 793 [10:35:22.558] Elapsed:: 0.4783000349998474ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 794 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 795 [10:35:22.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 796 [10:35:22.558] Elapsed:: 0.0415000319480896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 797 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 798 [10:35:22.558] Elapsed:: 0.01260000467300415ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 799 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 800 [10:35:22.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/read
Info 801 [10:35:22.558] Elapsed:: 0.04359996318817139ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 802 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 803 [10:35:22.558] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 804 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 805 [10:35:22.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 806 [10:35:22.558] Elapsed:: 0.029300034046173096ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 807 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 808 [10:35:22.558] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 809 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 810 [10:35:22.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/cli
Info 811 [10:35:22.558] Elapsed:: 0.039900004863739014ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 812 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 813 [10:35:22.558] Elapsed:: 0.0196000337600708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 814 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 815 [10:35:22.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 816 [10:35:22.558] Elapsed:: 0.02790004014968872ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 817 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 818 [10:35:22.558] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 819 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 820 [10:35:22.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/logger
Info 821 [10:35:22.558] Elapsed:: 0.037400007247924805ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 822 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 823 [10:35:22.558] Elapsed:: 0.02529996633529663ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 824 [10:35:22.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 825 [10:35:22.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 826 [10:35:22.559] Elapsed:: 0.050399959087371826ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 827 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 828 [10:35:22.559] Elapsed:: 0.01220005750656128ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 829 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 830 [10:35:22.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph
Info 831 [10:35:22.559] Elapsed:: 0.03819996118545532ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 832 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 833 [10:35:22.559] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 834 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 835 [10:35:22.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 836 [10:35:22.559] Elapsed:: 0.031199991703033447ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 837 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 838 [10:35:22.559] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 839 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 840 [10:35:22.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/types
Info 841 [10:35:22.559] Elapsed:: 0.06710004806518555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 842 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 843 [10:35:22.559] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 844 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 845 [10:35:22.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 846 [10:35:22.559] Elapsed:: 0.029600024223327637ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 847 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 848 [10:35:22.559] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 849 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 850 [10:35:22.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/write
Info 851 [10:35:22.559] Elapsed:: 0.04089999198913574ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 852 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 853 [10:35:22.559] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 854 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 855 [10:35:22.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 856 [10:35:22.559] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 857 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 858 [10:35:22.559] Elapsed:: 0.010400056838989258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 859 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 860 [10:35:22.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan
Info 861 [10:35:22.559] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 862 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 863 [10:35:22.559] Elapsed:: 0.017199993133544922ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 864 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 865 [10:35:22.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 866 [10:35:22.559] Elapsed:: 0.026300013065338135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 867 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 868 [10:35:22.559] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 869 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 870 [10:35:22.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan
Info 871 [10:35:22.559] Elapsed:: 0.03630000352859497ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 872 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 873 [10:35:22.559] Elapsed:: 0.01799994707107544ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 874 [10:35:22.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 875 [10:35:22.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 876 [10:35:22.560] Elapsed:: 0.025099992752075195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 877 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 878 [10:35:22.560] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 879 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 880 [10:35:22.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type
Info 881 [10:35:22.560] Elapsed:: 0.03519999980926514ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 882 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 883 [10:35:22.560] Elapsed:: 0.01690000295639038ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 884 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 885 [10:35:22.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 886 [10:35:22.560] Elapsed:: 0.026399970054626465ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 887 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 888 [10:35:22.560] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-version-range-type :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 889 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 890 [10:35:22.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git
Info 891 [10:35:22.560] Elapsed:: 0.03659999370574951ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 892 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 893 [10:35:22.560] Elapsed:: 0.01799994707107544ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 894 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 895 [10:35:22.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 896 [10:35:22.560] Elapsed:: 0.048799991607666016ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 897 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 898 [10:35:22.560] Elapsed:: 0.011699974536895752ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 899 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 900 [10:35:22.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/pre
Info 901 [10:35:22.560] Elapsed:: 0.03989994525909424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 902 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 903 [10:35:22.560] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 904 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 905 [10:35:22.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 906 [10:35:22.560] Elapsed:: 0.026899993419647217ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 907 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 908 [10:35:22.560] Elapsed:: 0.013599991798400879ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 909 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 910 [10:35:22.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets
Info 911 [10:35:22.560] Elapsed:: 0.04670000076293945ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 912 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 913 [10:35:22.560] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 914 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 915 [10:35:22.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 916 [10:35:22.560] Elapsed:: 0.028800010681152344ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 917 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 918 [10:35:22.560] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/@changesets :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 919 [10:35:22.560] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets:: Changing watcher to MissingFileSystemEntryWatcher
Info 920 [10:35:22.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 921 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md
Info 922 [10:35:22.561] Elapsed:: 0.027599990367889404ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 923 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 924 [10:35:22.561] Elapsed:: 0.0034999847412109375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 925 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 926 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 927 [10:35:22.561] Elapsed:: 0.029699981212615967ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 928 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 929 [10:35:22.561] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 930 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 931 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js
Info 932 [10:35:22.561] Elapsed:: 0.03849995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 933 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 934 [10:35:22.561] Elapsed:: 0.004500031471252441ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 935 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 936 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 937 [10:35:22.561] Elapsed:: 0.030600011348724365ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 938 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 939 [10:35:22.561] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 940 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 941 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json
Info 942 [10:35:22.561] Elapsed:: 0.048899948596954346ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 943 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 944 [10:35:22.561] Elapsed:: 0.0040000081062316895ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 945 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 946 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 947 [10:35:22.561] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 948 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 949 [10:35:22.561] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 950 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 951 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js
Info 952 [10:35:22.561] Elapsed:: 0.021400034427642822ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 953 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 954 [10:35:22.561] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 955 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 956 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 957 [10:35:22.561] Elapsed:: 0.023500025272369385ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 958 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 959 [10:35:22.561] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/register.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 960 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 961 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/hard-rejection/license
Info 962 [10:35:22.561] Elapsed:: 0.04020005464553833ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 963 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 964 [10:35:22.561] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 965 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 966 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 967 [10:35:22.561] Elapsed:: 0.027500033378601074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 968 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 969 [10:35:22.561] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 970 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 971 [10:35:22.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts
Info 972 [10:35:22.561] Elapsed:: 0.04110002517700195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 973 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 974 [10:35:22.561] Elapsed:: 0.003800034523010254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 975 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 976 [10:35:22.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 977 [10:35:22.561] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 978 [10:35:22.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 979 [10:35:22.561] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 980 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 981 [10:35:22.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection
Info 982 [10:35:22.562] Elapsed:: 0.035800039768218994ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 983 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 984 [10:35:22.562] Elapsed:: 0.019200026988983154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 985 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 986 [10:35:22.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 987 [10:35:22.562] Elapsed:: 0.026300013065338135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 988 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 989 [10:35:22.562] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/hard-rejection/hard-rejection :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 990 [10:35:22.562] sysLog:: /home/jabaile/work/pprof-it/node_modules/hard-rejection:: Changing watcher to MissingFileSystemEntryWatcher
Info 991 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 992 [10:35:22.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE
Info 993 [10:35:22.562] Elapsed:: 0.07670003175735474ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 994 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 995 [10:35:22.562] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 996 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 997 [10:35:22.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 998 [10:35:22.562] Elapsed:: 0.03140002489089966ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 999 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1000 [10:35:22.562] Elapsed:: 0.011500000953674316ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1001 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1002 [10:35:22.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/index.js
Info 1003 [10:35:22.562] Elapsed:: 0.023800015449523926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1004 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1005 [10:35:22.562] Elapsed:: 0.0029999613761901855ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1006 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1007 [10:35:22.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1008 [10:35:22.562] Elapsed:: 0.025600016117095947ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1009 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1010 [10:35:22.562] Elapsed:: 0.01239997148513794ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1011 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1012 [10:35:22.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-regex/test
Info 1013 [10:35:22.562] Elapsed:: 0.03880000114440918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1014 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1015 [10:35:22.562] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1016 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1017 [10:35:22.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1018 [10:35:22.562] Elapsed:: 0.026600003242492676ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1019 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1020 [10:35:22.562] Elapsed:: 0.009499967098236084ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1021 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1022 [10:35:22.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/package.json
Info 1023 [10:35:22.562] Elapsed:: 0.037100017070770264ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1024 [10:35:22.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1025 [10:35:22.562] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1026 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1027 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1028 [10:35:22.563] Elapsed:: 0.0372999906539917ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1029 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1030 [10:35:22.563] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1031 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1032 [10:35:22.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc
Info 1033 [10:35:22.563] Elapsed:: 0.022500038146972656ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1034 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1035 [10:35:22.563] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1036 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1037 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1038 [10:35:22.563] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1039 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1040 [10:35:22.563] Elapsed:: 0.01109999418258667ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1041 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1042 [10:35:22.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/README.md
Info 1043 [10:35:22.563] Elapsed:: 0.020000040531158447ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1044 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1045 [10:35:22.563] Elapsed:: 0.0040000081062316895ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1046 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1047 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1048 [10:35:22.563] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1049 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1050 [10:35:22.563] Elapsed:: 0.01810002326965332ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1051 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1052 [10:35:22.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc
Info 1053 [10:35:22.563] Elapsed:: 0.02399998903274536ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1054 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1055 [10:35:22.563] Elapsed:: 0.0037999749183654785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1056 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1057 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1058 [10:35:22.563] Elapsed:: 0.028600037097930908ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1059 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1060 [10:35:22.563] Elapsed:: 0.010200023651123047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1061 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1062 [10:35:22.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig
Info 1063 [10:35:22.563] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1064 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1065 [10:35:22.563] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1066 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1067 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1068 [10:35:22.563] Elapsed:: 0.02629995346069336ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1069 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1070 [10:35:22.563] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1071 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1072 [10:35:22.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore
Info 1073 [10:35:22.563] Elapsed:: 0.019899964332580566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1074 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1075 [10:35:22.563] Elapsed:: 0.005099952220916748ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1076 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1077 [10:35:22.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1078 [10:35:22.563] Elapsed:: 0.027599990367889404ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1079 [10:35:22.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1080 [10:35:22.563] Elapsed:: 0.01109999418258667ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1081 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1082 [10:35:22.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md
Info 1083 [10:35:22.564] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1084 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1085 [10:35:22.564] Elapsed:: 0.004100024700164795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1086 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1087 [10:35:22.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1088 [10:35:22.564] Elapsed:: 0.026899993419647217ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1089 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1090 [10:35:22.564] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1091 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1092 [10:35:22.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex
Info 1093 [10:35:22.564] Elapsed:: 0.040100038051605225ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1094 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1095 [10:35:22.564] Elapsed:: 0.021399974822998047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1096 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1097 [10:35:22.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1098 [10:35:22.564] Elapsed:: 0.027100026607513428ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1099 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1100 [10:35:22.564] Elapsed:: 0.010299980640411377ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-regex/is-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1101 [10:35:22.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/is-regex:: Changing watcher to MissingFileSystemEntryWatcher
Info 1102 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1103 [10:35:22.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md
Info 1104 [10:35:22.564] Elapsed:: 0.025099992752075195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1105 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1106 [10:35:22.564] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1107 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1108 [10:35:22.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1109 [10:35:22.564] Elapsed:: 0.03600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1110 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1111 [10:35:22.564] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/LICENSE.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1112 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1113 [10:35:22.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json
Info 1114 [10:35:22.564] Elapsed:: 0.02670001983642578ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1115 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1116 [10:35:22.564] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1117 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1118 [10:35:22.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1119 [10:35:22.564] Elapsed:: 0.027399957180023193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1120 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1121 [10:35:22.564] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1122 [10:35:22.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1123 [10:35:22.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js
Info 1124 [10:35:22.565] Elapsed:: 0.4156000018119812ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1125 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1126 [10:35:22.565] Elapsed:: 0.004199981689453125ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1127 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1128 [10:35:22.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1129 [10:35:22.565] Elapsed:: 0.03450000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1130 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1131 [10:35:22.565] Elapsed:: 0.011299967765808105ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/levenshtein.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1132 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1133 [10:35:22.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md
Info 1134 [10:35:22.565] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1135 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1136 [10:35:22.565] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1137 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1138 [10:35:22.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1139 [10:35:22.565] Elapsed:: 0.025700032711029053ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1140 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1141 [10:35:22.565] Elapsed:: 0.012199997901916504ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1142 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1143 [10:35:22.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein
Info 1144 [10:35:22.565] Elapsed:: 0.044499993324279785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1145 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1146 [10:35:22.565] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1147 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1148 [10:35:22.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1149 [10:35:22.565] Elapsed:: 0.03240001201629639ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1150 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1151 [10:35:22.565] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/fast-levenshtein/fast-levenshtein :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1152 [10:35:22.565] sysLog:: /home/jabaile/work/pprof-it/node_modules/fast-levenshtein:: Changing watcher to MissingFileSystemEntryWatcher
Info 1153 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1154 [10:35:22.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler
Info 1155 [10:35:22.565] Elapsed:: 0.025799989700317383ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1156 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1157 [10:35:22.565] Elapsed:: 0.0045999884605407715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1158 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1159 [10:35:22.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1160 [10:35:22.565] Elapsed:: 0.04300004243850708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1161 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1162 [10:35:22.565] Elapsed:: 0.013000011444091797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.closure-compiler :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1163 [10:35:22.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1164 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/doctrine/lib
Info 1165 [10:35:22.566] Elapsed:: 0.04229998588562012ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1166 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1167 [10:35:22.566] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1168 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1169 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1170 [10:35:22.566] Elapsed:: 0.028500020503997803ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1171 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1172 [10:35:22.566] Elapsed:: 0.011500000953674316ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1173 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1174 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE
Info 1175 [10:35:22.566] Elapsed:: 0.03889995813369751ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1176 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1177 [10:35:22.566] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1178 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1179 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1180 [10:35:22.566] Elapsed:: 0.027399957180023193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1181 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1182 [10:35:22.566] Elapsed:: 0.009399950504302979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1183 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1184 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/doctrine/package.json
Info 1185 [10:35:22.566] Elapsed:: 0.02529996633529663ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1186 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1187 [10:35:22.566] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1188 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1189 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1190 [10:35:22.566] Elapsed:: 0.025000035762786865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1191 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1192 [10:35:22.566] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1193 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1194 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/doctrine/README.md
Info 1195 [10:35:22.566] Elapsed:: 0.022799968719482422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1196 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1197 [10:35:22.566] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1198 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1199 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1200 [10:35:22.566] Elapsed:: 0.02490001916885376ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1201 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1202 [10:35:22.566] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1203 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1204 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima
Info 1205 [10:35:22.566] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1206 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1207 [10:35:22.566] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1208 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1209 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1210 [10:35:22.566] Elapsed:: 0.023500025272369385ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1211 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1212 [10:35:22.566] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/LICENSE.esprima :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1213 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1214 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md
Info 1215 [10:35:22.566] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1216 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1217 [10:35:22.566] Elapsed:: 0.003899991512298584ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1218 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1219 [10:35:22.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1220 [10:35:22.566] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1221 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1222 [10:35:22.566] Elapsed:: 0.02799999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1223 [10:35:22.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1224 [10:35:22.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine
Info 1225 [10:35:22.566] Elapsed:: 0.0439000129699707ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1226 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1227 [10:35:22.567] Elapsed:: 0.027500033378601074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1228 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1229 [10:35:22.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1230 [10:35:22.567] Elapsed:: 0.02890002727508545ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1231 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1232 [10:35:22.567] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/doctrine/doctrine :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1233 [10:35:22.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/doctrine:: Changing watcher to MissingFileSystemEntryWatcher
Info 1234 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1235 [10:35:22.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE
Info 1236 [10:35:22.567] Elapsed:: 0.04350000619888306ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1237 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1238 [10:35:22.567] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1239 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1240 [10:35:22.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1241 [10:35:22.567] Elapsed:: 0.029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1242 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1243 [10:35:22.567] Elapsed:: 0.011200010776519775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1244 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1245 [10:35:22.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js
Info 1246 [10:35:22.567] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1247 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1248 [10:35:22.567] Elapsed:: 0.0042000412940979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1249 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1250 [10:35:22.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1251 [10:35:22.567] Elapsed:: 0.026800036430358887ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1252 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1253 [10:35:22.567] Elapsed:: 0.010800004005432129ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1254 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1255 [10:35:22.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test
Info 1256 [10:35:22.567] Elapsed:: 0.03790003061294556ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1257 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1258 [10:35:22.567] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1259 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1260 [10:35:22.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1261 [10:35:22.567] Elapsed:: 0.027099967002868652ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1262 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1263 [10:35:22.567] Elapsed:: 0.010700047016143799ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1264 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1265 [10:35:22.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json
Info 1266 [10:35:22.567] Elapsed:: 0.02529996633529663ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1267 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1268 [10:35:22.567] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1269 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1270 [10:35:22.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1271 [10:35:22.567] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1272 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1273 [10:35:22.567] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1274 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1275 [10:35:22.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc
Info 1276 [10:35:22.567] Elapsed:: 0.020200014114379883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1277 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1278 [10:35:22.567] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1279 [10:35:22.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1280 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1281 [10:35:22.568] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1282 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1283 [10:35:22.568] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1284 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1285 [10:35:22.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md
Info 1286 [10:35:22.568] Elapsed:: 0.01930004358291626ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1287 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1288 [10:35:22.568] Elapsed:: 0.0042000412940979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1289 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1290 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1291 [10:35:22.568] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1292 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1293 [10:35:22.568] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1294 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1295 [10:35:22.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc
Info 1296 [10:35:22.568] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1297 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1298 [10:35:22.568] Elapsed:: 0.00289994478225708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1299 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1300 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1301 [10:35:22.568] Elapsed:: 0.02399998903274536ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1302 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1303 [10:35:22.568] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1304 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1305 [10:35:22.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig
Info 1306 [10:35:22.568] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1307 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1308 [10:35:22.568] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1309 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1310 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1311 [10:35:22.568] Elapsed:: 0.031500041484832764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1312 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1313 [10:35:22.568] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/.editorconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1314 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1315 [10:35:22.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md
Info 1316 [10:35:22.568] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1317 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1318 [10:35:22.568] Elapsed:: 0.003200054168701172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1319 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1320 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1321 [10:35:22.568] Elapsed:: 0.024599969387054443ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1322 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1323 [10:35:22.568] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1324 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1325 [10:35:22.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive
Info 1326 [10:35:22.568] Elapsed:: 0.04189997911453247ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1327 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1328 [10:35:22.568] Elapsed:: 0.018299996852874756ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1329 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1330 [10:35:22.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1331 [10:35:22.568] Elapsed:: 0.02619999647140503ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1332 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1333 [10:35:22.568] Elapsed:: 0.013499975204467773ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/unbox-primitive/unbox-primitive :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1334 [10:35:22.568] sysLog:: /home/jabaile/work/pprof-it/node_modules/unbox-primitive:: Changing watcher to MissingFileSystemEntryWatcher
Info 1335 [10:35:22.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1336 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE
Info 1337 [10:35:22.569] Elapsed:: 0.044200003147125244ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1338 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1339 [10:35:22.569] Elapsed:: 0.019299983978271484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1340 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1341 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1342 [10:35:22.569] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1343 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1344 [10:35:22.569] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1345 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1346 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js
Info 1347 [10:35:22.569] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1348 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1349 [10:35:22.569] Elapsed:: 0.004100024700164795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1350 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1351 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1352 [10:35:22.569] Elapsed:: 0.026500046253204346ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1353 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1354 [10:35:22.569] Elapsed:: 0.011200010776519775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1355 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1356 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/object-inspect/test
Info 1357 [10:35:22.569] Elapsed:: 0.03810000419616699ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1358 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1359 [10:35:22.569] Elapsed:: 0.022399961948394775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1360 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1361 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1362 [10:35:22.569] Elapsed:: 0.03140002489089966ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1363 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1364 [10:35:22.569] Elapsed:: 0.010799944400787354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1365 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1366 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json
Info 1367 [10:35:22.569] Elapsed:: 0.031099975109100342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1368 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1369 [10:35:22.569] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1370 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1371 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1372 [10:35:22.569] Elapsed:: 0.025600016117095947ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1373 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1374 [10:35:22.569] Elapsed:: 0.016200006008148193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1375 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1376 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json
Info 1377 [10:35:22.569] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1378 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1379 [10:35:22.569] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1380 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1381 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1382 [10:35:22.569] Elapsed:: 0.029300034046173096ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1383 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1384 [10:35:22.569] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/package-support.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1385 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1386 [10:35:22.569] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js
Info 1387 [10:35:22.569] Elapsed:: 0.020200014114379883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1388 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1389 [10:35:22.569] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1390 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1391 [10:35:22.569] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1392 [10:35:22.569] Elapsed:: 0.02310001850128174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1393 [10:35:22.569] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1394 [10:35:22.570] Elapsed:: 0.010500013828277588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/test-core-js.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1395 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1396 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc
Info 1397 [10:35:22.570] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1398 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1399 [10:35:22.570] Elapsed:: 0.0042999982833862305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1400 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1401 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1402 [10:35:22.570] Elapsed:: 0.027800023555755615ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1403 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1404 [10:35:22.570] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1405 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1406 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/object-inspect/example
Info 1407 [10:35:22.570] Elapsed:: 0.043200016021728516ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1408 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1409 [10:35:22.570] Elapsed:: 0.01969999074935913ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1410 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1411 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1412 [10:35:22.570] Elapsed:: 0.024700045585632324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1413 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1414 [10:35:22.570] Elapsed:: 0.011199951171875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1415 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1416 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js
Info 1417 [10:35:22.570] Elapsed:: 0.03670001029968262ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1418 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1419 [10:35:22.570] Elapsed:: 0.0062999725341796875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1420 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1421 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1422 [10:35:22.570] Elapsed:: 0.029700040817260742ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1423 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1424 [10:35:22.570] Elapsed:: 0.011299967765808105ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/util.inspect.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1425 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1426 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc
Info 1427 [10:35:22.570] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1428 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1429 [10:35:22.570] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1430 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1431 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1432 [10:35:22.570] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1433 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1434 [10:35:22.570] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1435 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1436 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown
Info 1437 [10:35:22.570] Elapsed:: 0.02030003070831299ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1438 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1439 [10:35:22.570] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1440 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1441 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1442 [10:35:22.570] Elapsed:: 0.023899972438812256ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1443 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1444 [10:35:22.570] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1445 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1446 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md
Info 1447 [10:35:22.570] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1448 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1449 [10:35:22.570] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1450 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1451 [10:35:22.570] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1452 [10:35:22.570] Elapsed:: 0.026300013065338135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1453 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1454 [10:35:22.570] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1455 [10:35:22.570] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1456 [10:35:22.570] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect
Info 1457 [10:35:22.571] Elapsed:: 0.03940004110336304ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1458 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1459 [10:35:22.571] Elapsed:: 0.018999993801116943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1460 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1461 [10:35:22.571] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1462 [10:35:22.571] Elapsed:: 0.026399970054626465ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1463 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1464 [10:35:22.571] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/object-inspect/object-inspect :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1465 [10:35:22.571] sysLog:: /home/jabaile/work/pprof-it/node_modules/object-inspect:: Changing watcher to MissingFileSystemEntryWatcher
Info 1466 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1467 [10:35:22.571] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE
Info 1468 [10:35:22.571] Elapsed:: 0.04350000619888306ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1469 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1470 [10:35:22.571] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1471 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1472 [10:35:22.571] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1473 [10:35:22.571] Elapsed:: 0.0317000150680542ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1474 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1475 [10:35:22.571] Elapsed:: 0.019200026988983154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1476 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1477 [10:35:22.571] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js
Info 1478 [10:35:22.571] Elapsed:: 0.02469998598098755ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1479 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1480 [10:35:22.571] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1481 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1482 [10:35:22.571] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1483 [10:35:22.571] Elapsed:: 0.03979998826980591ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1484 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1485 [10:35:22.571] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1486 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1487 [10:35:22.571] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json
Info 1488 [10:35:22.571] Elapsed:: 0.02319997549057007ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1489 [10:35:22.571] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1490 [10:35:22.572] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1491 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1492 [10:35:22.572] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1493 [10:35:22.572] Elapsed:: 0.02790004014968872ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1494 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1495 [10:35:22.572] Elapsed:: 0.04969996213912964ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1496 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1497 [10:35:22.572] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md
Info 1498 [10:35:22.572] Elapsed:: 0.023299992084503174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1499 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1500 [10:35:22.572] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1501 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1502 [10:35:22.572] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1503 [10:35:22.572] Elapsed:: 0.026600003242492676ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1504 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1505 [10:35:22.572] Elapsed:: 0.0098000168800354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1506 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1507 [10:35:22.572] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts
Info 1508 [10:35:22.572] Elapsed:: 0.04039996862411499ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1509 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1510 [10:35:22.572] Elapsed:: 0.0037000179290771484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1511 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1512 [10:35:22.572] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1513 [10:35:22.572] Elapsed:: 0.0383000373840332ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1514 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1515 [10:35:22.572] Elapsed:: 0.010299980640411377ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1516 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1517 [10:35:22.572] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir
Info 1518 [10:35:22.572] Elapsed:: 0.04240000247955322ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1519 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1520 [10:35:22.572] Elapsed:: 0.019299983978271484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1521 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1522 [10:35:22.572] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1523 [10:35:22.572] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1524 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1525 [10:35:22.572] Elapsed:: 0.009499967098236084ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-subdir/is-subdir :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1526 [10:35:22.572] sysLog:: /home/jabaile/work/pprof-it/node_modules/is-subdir:: Changing watcher to MissingFileSystemEntryWatcher
Info 1527 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1528 [10:35:22.572] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE
Info 1529 [10:35:22.572] Elapsed:: 0.040199995040893555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1530 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1531 [10:35:22.572] Elapsed:: 0.016499996185302734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1532 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1533 [10:35:22.572] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1534 [10:35:22.572] Elapsed:: 0.02799999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1535 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1536 [10:35:22.572] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1537 [10:35:22.572] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1538 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js
Info 1539 [10:35:22.573] Elapsed:: 0.02030003070831299ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1540 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1541 [10:35:22.573] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1542 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1543 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1544 [10:35:22.573] Elapsed:: 0.023599982261657715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1545 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1546 [10:35:22.573] Elapsed:: 0.009499967098236084ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1547 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1548 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json
Info 1549 [10:35:22.573] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1550 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1551 [10:35:22.573] Elapsed:: 0.00289994478225708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1552 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1553 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1554 [10:35:22.573] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1555 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1556 [10:35:22.573] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1557 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1558 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md
Info 1559 [10:35:22.573] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1560 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1561 [10:35:22.573] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1562 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1563 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1564 [10:35:22.573] Elapsed:: 0.023299992084503174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1565 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1566 [10:35:22.573] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1567 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1568 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license
Info 1569 [10:35:22.573] Elapsed:: 0.05519998073577881ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1570 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1571 [10:35:22.573] Elapsed:: 0.01669996976852417ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1572 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1573 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1574 [10:35:22.573] Elapsed:: 0.027500033378601074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1575 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1576 [10:35:22.573] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license/validate-npm-package-license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1577 [10:35:22.573] sysLog:: /home/jabaile/work/pprof-it/node_modules/validate-npm-package-license:: Changing watcher to MissingFileSystemEntryWatcher
Info 1578 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1579 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json
Info 1580 [10:35:22.573] Elapsed:: 0.024300038814544678ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1581 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1582 [10:35:22.573] Elapsed:: 0.0032999515533447266ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1583 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1584 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1585 [10:35:22.573] Elapsed:: 0.02640002965927124ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1586 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1587 [10:35:22.573] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1588 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1589 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js
Info 1590 [10:35:22.573] Elapsed:: 0.018600046634674072ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1591 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1592 [10:35:22.573] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1593 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1594 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1595 [10:35:22.573] Elapsed:: 0.023399949073791504ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1596 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1597 [10:35:22.573] Elapsed:: 0.009400010108947754ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1598 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1599 [10:35:22.573] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json
Info 1600 [10:35:22.573] Elapsed:: 0.018299996852874756ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1601 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1602 [10:35:22.573] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1603 [10:35:22.573] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1604 [10:35:22.573] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1605 [10:35:22.574] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1606 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1607 [10:35:22.574] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1608 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1609 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE
Info 1610 [10:35:22.574] Elapsed:: 0.04120004177093506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1611 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1612 [10:35:22.574] Elapsed:: 0.017199993133544922ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1613 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1614 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1615 [10:35:22.574] Elapsed:: 0.024100005626678467ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1616 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1617 [10:35:22.574] Elapsed:: 0.008699953556060791ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1618 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1619 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json
Info 1620 [10:35:22.574] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1621 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1622 [10:35:22.574] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1623 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1624 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1625 [10:35:22.574] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1626 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1627 [10:35:22.574] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1628 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1629 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js
Info 1630 [10:35:22.574] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1631 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1632 [10:35:22.574] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1633 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1634 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1635 [10:35:22.574] Elapsed:: 0.030399978160858154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1636 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1637 [10:35:22.574] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1638 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1639 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json
Info 1640 [10:35:22.574] Elapsed:: 0.02649998664855957ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1641 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1642 [10:35:22.574] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1643 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1644 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1645 [10:35:22.574] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1646 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1647 [10:35:22.574] Elapsed:: 0.009200036525726318ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1648 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1649 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js
Info 1650 [10:35:22.574] Elapsed:: 0.018900036811828613ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1651 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1652 [10:35:22.574] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1653 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1654 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1655 [10:35:22.574] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1656 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1657 [10:35:22.574] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1658 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1659 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js
Info 1660 [10:35:22.574] Elapsed:: 0.017099976539611816ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1661 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1662 [10:35:22.574] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1663 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1664 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1665 [10:35:22.574] Elapsed:: 0.03130000829696655ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1666 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1667 [10:35:22.574] Elapsed:: 0.009900033473968506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1668 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1669 [10:35:22.574] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md
Info 1670 [10:35:22.574] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1671 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1672 [10:35:22.574] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1673 [10:35:22.574] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1674 [10:35:22.574] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1675 [10:35:22.575] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1676 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1677 [10:35:22.575] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1678 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1679 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md
Info 1680 [10:35:22.575] Elapsed:: 0.018000006675720215ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1681 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1682 [10:35:22.575] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1683 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1684 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1685 [10:35:22.575] Elapsed:: 0.02499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1686 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1687 [10:35:22.575] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1688 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1689 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json
Info 1690 [10:35:22.575] Elapsed:: 0.017499983310699463ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1691 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1692 [10:35:22.575] Elapsed:: 0.0028000473976135254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1693 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1694 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1695 [10:35:22.575] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1696 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1697 [10:35:22.575] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/full-versions.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1698 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1699 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js
Info 1700 [10:35:22.575] Elapsed:: 0.019899964332580566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1701 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1702 [10:35:22.575] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1703 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1704 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1705 [10:35:22.575] Elapsed:: 0.021500051021575928ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1706 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1707 [10:35:22.575] Elapsed:: 0.026699960231781006ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/chromium-versions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1708 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1709 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium
Info 1710 [10:35:22.575] Elapsed:: 0.03819996118545532ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1711 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1712 [10:35:22.575] Elapsed:: 0.015799999237060547ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1713 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1714 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1715 [10:35:22.575] Elapsed:: 0.02679997682571411ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1716 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1717 [10:35:22.575] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/electron-to-chromium/electron-to-chromium :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1718 [10:35:22.575] sysLog:: /home/jabaile/work/pprof-it/node_modules/electron-to-chromium:: Changing watcher to MissingFileSystemEntryWatcher
Info 1719 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1720 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md
Info 1721 [10:35:22.575] Elapsed:: 0.024300038814544678ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1722 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1723 [10:35:22.575] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1724 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1725 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1726 [10:35:22.575] Elapsed:: 0.025300025939941406ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1727 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1728 [10:35:22.575] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1729 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1730 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js
Info 1731 [10:35:22.575] Elapsed:: 0.019200026988983154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1732 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1733 [10:35:22.575] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1734 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1735 [10:35:22.575] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1736 [10:35:22.575] Elapsed:: 0.02249997854232788ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1737 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1738 [10:35:22.575] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1739 [10:35:22.575] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1740 [10:35:22.575] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json
Info 1741 [10:35:22.576] Elapsed:: 0.02199995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1742 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1743 [10:35:22.576] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1744 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1745 [10:35:22.576] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1746 [10:35:22.576] Elapsed:: 0.024399995803833008ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1747 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1748 [10:35:22.576] Elapsed:: 0.009399950504302979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1749 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1750 [10:35:22.576] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/strip-ansi/license
Info 1751 [10:35:22.576] Elapsed:: 0.034900009632110596ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1752 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1753 [10:35:22.576] Elapsed:: 0.018599987030029297ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1754 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1755 [10:35:22.576] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1756 [10:35:22.576] Elapsed:: 0.02310001850128174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1757 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1758 [10:35:22.576] Elapsed:: 0.00850003957748413ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1759 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1760 [10:35:22.576] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts
Info 1761 [10:35:22.576] Elapsed:: 0.03560000658035278ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1762 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1763 [10:35:22.576] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1764 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1765 [10:35:22.576] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1766 [10:35:22.576] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1767 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1768 [10:35:22.576] Elapsed:: 0.009400010108947754ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1769 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1770 [10:35:22.576] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi
Info 1771 [10:35:22.576] Elapsed:: 0.031899988651275635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1772 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1773 [10:35:22.576] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1774 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1775 [10:35:22.576] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1776 [10:35:22.576] Elapsed:: 0.024500012397766113ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1777 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1778 [10:35:22.576] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/strip-ansi/strip-ansi :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1779 [10:35:22.576] sysLog:: /home/jabaile/work/pprof-it/node_modules/strip-ansi:: Changing watcher to MissingFileSystemEntryWatcher
Info 1780 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1781 [10:35:22.576] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE
Info 1782 [10:35:22.576] Elapsed:: 0.04430001974105835ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1783 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1784 [10:35:22.576] Elapsed:: 0.018800020217895508ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1785 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1786 [10:35:22.576] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1787 [10:35:22.576] Elapsed:: 0.03250002861022949ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1788 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1789 [10:35:22.576] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1790 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1791 [10:35:22.576] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/y18n/package.json
Info 1792 [10:35:22.576] Elapsed:: 0.055299997329711914ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1793 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1794 [10:35:22.576] Elapsed:: 0.004499971866607666ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1795 [10:35:22.576] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1796 [10:35:22.577] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1797 [10:35:22.577] Elapsed:: 0.03270000219345093ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1798 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1799 [10:35:22.577] Elapsed:: 0.05290001630783081ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1800 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1801 [10:35:22.577] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs
Info 1802 [10:35:22.577] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1803 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1804 [10:35:22.577] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1805 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1806 [10:35:22.577] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1807 [10:35:22.577] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1808 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1809 [10:35:22.577] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1810 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1811 [10:35:22.577] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/y18n/README.md
Info 1812 [10:35:22.577] Elapsed:: 0.019099950790405273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1813 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1814 [10:35:22.577] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1815 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1816 [10:35:22.577] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1817 [10:35:22.577] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1818 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1819 [10:35:22.577] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1820 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1821 [10:35:22.577] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/y18n/build
Info 1822 [10:35:22.577] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1823 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1824 [10:35:22.577] Elapsed:: 0.01819998025894165ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1825 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1826 [10:35:22.577] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1827 [10:35:22.577] Elapsed:: 0.02529996633529663ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1828 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1829 [10:35:22.577] Elapsed:: 0.009200036525726318ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1830 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1831 [10:35:22.577] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md
Info 1832 [10:35:22.577] Elapsed:: 0.019099950790405273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1833 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1834 [10:35:22.577] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1835 [10:35:22.577] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1836 [10:35:22.578] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1837 [10:35:22.578] Elapsed:: 0.04659998416900635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1838 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1839 [10:35:22.578] Elapsed:: 0.011900007724761963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1840 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1841 [10:35:22.578] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/y18n/y18n
Info 1842 [10:35:22.578] Elapsed:: 0.049700021743774414ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1843 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1844 [10:35:22.578] Elapsed:: 0.02090001106262207ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1845 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1846 [10:35:22.578] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1847 [10:35:22.578] Elapsed:: 0.028299987316131592ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1848 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1849 [10:35:22.578] Elapsed:: 0.0098000168800354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/y18n/y18n :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1850 [10:35:22.578] sysLog:: /home/jabaile/work/pprof-it/node_modules/y18n:: Changing watcher to MissingFileSystemEntryWatcher
Info 1851 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1852 [10:35:22.578] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE
Info 1853 [10:35:22.578] Elapsed:: 0.04180002212524414ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1854 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1855 [10:35:22.578] Elapsed:: 0.018700003623962402ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1856 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1857 [10:35:22.578] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1858 [10:35:22.578] Elapsed:: 0.028299987316131592ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1859 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1860 [10:35:22.578] Elapsed:: 0.010300040245056152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1861 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1862 [10:35:22.578] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js
Info 1863 [10:35:22.578] Elapsed:: 0.02199995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1864 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1865 [10:35:22.578] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1866 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1867 [10:35:22.578] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1868 [10:35:22.578] Elapsed:: 0.02499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1869 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1870 [10:35:22.578] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1871 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1872 [10:35:22.578] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json
Info 1873 [10:35:22.578] Elapsed:: 0.022799968719482422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1874 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1875 [10:35:22.578] Elapsed:: 0.006199955940246582ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1876 [10:35:22.578] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1877 [10:35:22.578] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1878 [10:35:22.579] Elapsed:: 0.06880003213882446ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1879 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1880 [10:35:22.579] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1881 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1882 [10:35:22.579] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests
Info 1883 [10:35:22.579] Elapsed:: 0.037600040435791016ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1884 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1885 [10:35:22.579] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1886 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1887 [10:35:22.579] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1888 [10:35:22.579] Elapsed:: 0.025099992752075195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1889 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1890 [10:35:22.579] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/tests :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1891 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1892 [10:35:22.579] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md
Info 1893 [10:35:22.579] Elapsed:: 0.0196000337600708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1894 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1895 [10:35:22.579] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1896 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1897 [10:35:22.579] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1898 [10:35:22.579] Elapsed:: 0.02340000867843628ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1899 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1900 [10:35:22.579] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1901 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1902 [10:35:22.579] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts
Info 1903 [10:35:22.579] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1904 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1905 [10:35:22.579] Elapsed:: 0.003800034523010254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1906 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1907 [10:35:22.579] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1908 [10:35:22.579] Elapsed:: 0.024500012397766113ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1909 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1910 [10:35:22.579] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1911 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1912 [10:35:22.579] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter
Info 1913 [10:35:22.579] Elapsed:: 0.036199986934661865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1914 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1915 [10:35:22.579] Elapsed:: 0.01660001277923584ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1916 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1917 [10:35:22.579] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1918 [10:35:22.579] Elapsed:: 0.025300025939941406ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1919 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1920 [10:35:22.579] Elapsed:: 0.0153999924659729ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/grapheme-splitter/grapheme-splitter :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1921 [10:35:22.579] sysLog:: /home/jabaile/work/pprof-it/node_modules/grapheme-splitter:: Changing watcher to MissingFileSystemEntryWatcher
Info 1922 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1923 [10:35:22.579] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/cliui/package.json
Info 1924 [10:35:22.579] Elapsed:: 0.028100013732910156ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1925 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1926 [10:35:22.579] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1927 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1928 [10:35:22.579] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1929 [10:35:22.579] Elapsed:: 0.026099979877471924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1930 [10:35:22.579] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1931 [10:35:22.579] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1932 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1933 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt
Info 1934 [10:35:22.580] Elapsed:: 0.01969999074935913ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1935 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1936 [10:35:22.580] Elapsed:: 0.003099977970123291ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1937 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1938 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1939 [10:35:22.580] Elapsed:: 0.03570002317428589ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1940 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1941 [10:35:22.580] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1942 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1943 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs
Info 1944 [10:35:22.580] Elapsed:: 0.018500030040740967ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1945 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1946 [10:35:22.580] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1947 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1948 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1949 [10:35:22.580] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1950 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1951 [10:35:22.580] Elapsed:: 0.00839996337890625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1952 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1953 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/cliui/README.md
Info 1954 [10:35:22.580] Elapsed:: 0.018299996852874756ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1955 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1956 [10:35:22.580] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1957 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1958 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1959 [10:35:22.580] Elapsed:: 0.02249997854232788ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1960 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1961 [10:35:22.580] Elapsed:: 0.00820004940032959ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1962 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1963 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cliui/build
Info 1964 [10:35:22.580] Elapsed:: 0.03570002317428589ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1965 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1966 [10:35:22.580] Elapsed:: 0.018399953842163086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1967 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1968 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1969 [10:35:22.580] Elapsed:: 0.024200022220611572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1970 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1971 [10:35:22.580] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1972 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1973 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md
Info 1974 [10:35:22.580] Elapsed:: 0.018200039863586426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1975 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1976 [10:35:22.580] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1977 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1978 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1979 [10:35:22.580] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1980 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1981 [10:35:22.580] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1982 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1983 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cliui/node_modules
Info 1984 [10:35:22.580] Elapsed:: 0.033600032329559326ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1985 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1986 [10:35:22.580] Elapsed:: 0.01759999990463257ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1987 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1988 [10:35:22.580] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1989 [10:35:22.580] Elapsed:: 0.024500012397766113ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1990 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1991 [10:35:22.580] Elapsed:: 0.0037000179290771484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/node_modules :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1992 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1993 [10:35:22.580] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cliui/cliui
Info 1994 [10:35:22.580] Elapsed:: 0.031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1995 [10:35:22.580] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1996 [10:35:22.581] Elapsed:: 0.01830005645751953ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1997 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1998 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1999 [10:35:22.581] Elapsed:: 0.023899972438812256ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2000 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2001 [10:35:22.581] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cliui/cliui :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2002 [10:35:22.581] sysLog:: /home/jabaile/work/pprof-it/node_modules/cliui:: Changing watcher to MissingFileSystemEntryWatcher
Info 2003 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2004 [10:35:22.581] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md
Info 2005 [10:35:22.581] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2006 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2007 [10:35:22.581] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2008 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2009 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2010 [10:35:22.581] Elapsed:: 0.02469998598098755ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2011 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2012 [10:35:22.581] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2013 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2014 [10:35:22.581] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js
Info 2015 [10:35:22.581] Elapsed:: 0.021099984645843506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2016 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2017 [10:35:22.581] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2018 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2019 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2020 [10:35:22.581] Elapsed:: 0.032199978828430176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2021 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2022 [10:35:22.581] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2023 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2024 [10:35:22.581] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json
Info 2025 [10:35:22.581] Elapsed:: 0.023599982261657715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2026 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2027 [10:35:22.581] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2028 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2029 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2030 [10:35:22.581] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2031 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2032 [10:35:22.581] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2033 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2034 [10:35:22.581] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/quick-lru/license
Info 2035 [10:35:22.581] Elapsed:: 0.03579998016357422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2036 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2037 [10:35:22.581] Elapsed:: 0.01819998025894165ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2038 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2039 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2040 [10:35:22.581] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2041 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2042 [10:35:22.581] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2043 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2044 [10:35:22.581] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts
Info 2045 [10:35:22.581] Elapsed:: 0.044499993324279785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2046 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2047 [10:35:22.581] Elapsed:: 0.0040000081062316895ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2048 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2049 [10:35:22.581] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2050 [10:35:22.581] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2051 [10:35:22.581] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2052 [10:35:22.581] Elapsed:: 0.011299967765808105ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2053 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2054 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru
Info 2055 [10:35:22.582] Elapsed:: 0.033499956130981445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2056 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2057 [10:35:22.582] Elapsed:: 0.018000006675720215ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2058 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2059 [10:35:22.582] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2060 [10:35:22.582] Elapsed:: 0.023800015449523926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2061 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2062 [10:35:22.582] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/quick-lru/quick-lru :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2063 [10:35:22.582] sysLog:: /home/jabaile/work/pprof-it/node_modules/quick-lru:: Changing watcher to MissingFileSystemEntryWatcher
Info 2064 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2065 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE
Info 2066 [10:35:22.582] Elapsed:: 0.03859996795654297ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2067 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2068 [10:35:22.582] Elapsed:: 0.017099976539611816ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2069 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2070 [10:35:22.582] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2071 [10:35:22.582] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2072 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2073 [10:35:22.582] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2074 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2075 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js
Info 2076 [10:35:22.582] Elapsed:: 0.01969999074935913ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2077 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2078 [10:35:22.582] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2079 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2080 [10:35:22.582] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2081 [10:35:22.582] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2082 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2083 [10:35:22.582] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2084 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2085 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test
Info 2086 [10:35:22.582] Elapsed:: 0.03329998254776001ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2087 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2088 [10:35:22.582] Elapsed:: 0.017000019550323486ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2089 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2090 [10:35:22.582] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2091 [10:35:22.582] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2092 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2093 [10:35:22.582] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2094 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2095 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json
Info 2096 [10:35:22.582] Elapsed:: 0.02310001850128174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2097 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2098 [10:35:22.582] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2099 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2100 [10:35:22.582] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2101 [10:35:22.582] Elapsed:: 0.021699965000152588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2102 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2103 [10:35:22.582] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2104 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2105 [10:35:22.582] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc
Info 2106 [10:35:22.582] Elapsed:: 0.02499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2107 [10:35:22.582] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2108 [10:35:22.583] Elapsed:: 0.003300011157989502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2109 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2110 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2111 [10:35:22.583] Elapsed:: 0.03250002861022949ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2112 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2113 [10:35:22.583] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.nycrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2114 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2115 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md
Info 2116 [10:35:22.583] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2117 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2118 [10:35:22.583] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2119 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2120 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2121 [10:35:22.583] Elapsed:: 0.022000014781951904ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2122 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2123 [10:35:22.583] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2124 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2125 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc
Info 2126 [10:35:22.583] Elapsed:: 0.018000006675720215ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2127 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2128 [10:35:22.583] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2129 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2130 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2131 [10:35:22.583] Elapsed:: 0.021599948406219482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2132 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2133 [10:35:22.583] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2134 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2135 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore
Info 2136 [10:35:22.583] Elapsed:: 0.01819998025894165ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2137 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2138 [10:35:22.583] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2139 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2140 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2141 [10:35:22.583] Elapsed:: 0.02199995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2142 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2143 [10:35:22.583] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/.eslintignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2144 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2145 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md
Info 2146 [10:35:22.583] Elapsed:: 0.016499996185302734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2147 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2148 [10:35:22.583] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2149 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2150 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2151 [10:35:22.583] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2152 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2153 [10:35:22.583] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2154 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2155 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer
Info 2156 [10:35:22.583] Elapsed:: 0.03630000352859497ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2157 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2158 [10:35:22.583] Elapsed:: 0.01810002326965332ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2159 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2160 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2161 [10:35:22.583] Elapsed:: 0.07370001077651978ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2162 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2163 [10:35:22.583] Elapsed:: 0.013700008392333984ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer/is-shared-array-buffer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2164 [10:35:22.583] sysLog:: /home/jabaile/work/pprof-it/node_modules/is-shared-array-buffer:: Changing watcher to MissingFileSystemEntryWatcher
Info 2165 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2166 [10:35:22.583] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/delay/readme.md
Info 2167 [10:35:22.583] Elapsed:: 0.023800015449523926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2168 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2169 [10:35:22.583] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2170 [10:35:22.583] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2171 [10:35:22.583] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2172 [10:35:22.584] Elapsed:: 0.025599956512451172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2173 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2174 [10:35:22.584] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2175 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2176 [10:35:22.584] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/delay/index.js
Info 2177 [10:35:22.584] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2178 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2179 [10:35:22.584] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2180 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2181 [10:35:22.584] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2182 [10:35:22.584] Elapsed:: 0.35420000553131104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2183 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2184 [10:35:22.584] Elapsed:: 0.013300001621246338ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2185 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2186 [10:35:22.584] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/delay/package.json
Info 2187 [10:35:22.584] Elapsed:: 0.02640002965927124ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2188 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2189 [10:35:22.584] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2190 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2191 [10:35:22.584] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2192 [10:35:22.584] Elapsed:: 0.023800015449523926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2193 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2194 [10:35:22.584] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2195 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2196 [10:35:22.584] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/delay/license
Info 2197 [10:35:22.584] Elapsed:: 0.03979998826980591ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2198 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2199 [10:35:22.584] Elapsed:: 0.02529996633529663ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2200 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2201 [10:35:22.584] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2202 [10:35:22.584] Elapsed:: 0.026600003242492676ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2203 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2204 [10:35:22.584] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2205 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2206 [10:35:22.584] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts
Info 2207 [10:35:22.584] Elapsed:: 0.03659999370574951ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2208 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2209 [10:35:22.584] Elapsed:: 0.003399968147277832ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2210 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2211 [10:35:22.584] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2212 [10:35:22.584] Elapsed:: 0.022800028324127197ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2213 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2214 [10:35:22.584] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2215 [10:35:22.584] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2216 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/delay/delay
Info 2217 [10:35:22.585] Elapsed:: 0.0317000150680542ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2218 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2219 [10:35:22.585] Elapsed:: 0.02319997549057007ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2220 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2221 [10:35:22.585] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2222 [10:35:22.585] Elapsed:: 0.024200022220611572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2223 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2224 [10:35:22.585] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/delay/delay :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2225 [10:35:22.585] sysLog:: /home/jabaile/work/pprof-it/node_modules/delay:: Changing watcher to MissingFileSystemEntryWatcher
Info 2226 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2227 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js
Info 2228 [10:35:22.585] Elapsed:: 0.02310001850128174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2229 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2230 [10:35:22.585] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2231 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2232 [10:35:22.585] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2233 [10:35:22.585] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2234 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2235 [10:35:22.585] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/util.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2236 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2237 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js
Info 2238 [10:35:22.585] Elapsed:: 0.017799973487854004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2239 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2240 [10:35:22.585] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2241 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2242 [10:35:22.585] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2243 [10:35:22.585] Elapsed:: 0.021700024604797363ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2244 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2245 [10:35:22.585] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2246 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2247 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js
Info 2248 [10:35:22.585] Elapsed:: 0.017099976539611816ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2249 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2250 [10:35:22.585] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2251 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2252 [10:35:22.585] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2253 [10:35:22.585] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2254 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2255 [10:35:22.585] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/help.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2256 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2257 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib
Info 2258 [10:35:22.585] Elapsed:: 0.0461999773979187ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2259 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2260 [10:35:22.585] Elapsed:: 0.020299971103668213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2261 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2262 [10:35:22.585] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2263 [10:35:22.585] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2264 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2265 [10:35:22.585] Elapsed:: 0.008900046348571777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2266 [10:35:22.585] sysLog:: /home/jabaile/work/pprof-it/node_modules/optionator/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 2267 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2268 [10:35:22.585] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/optionator/lib
Info 2269 [10:35:22.585] Elapsed:: 0.03669995069503784ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2270 [10:35:22.585] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2271 [10:35:22.586] Elapsed:: 0.018299996852874756ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2272 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2273 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2274 [10:35:22.586] Elapsed:: 0.025000035762786865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2275 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2276 [10:35:22.586] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2277 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2278 [10:35:22.586] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE
Info 2279 [10:35:22.586] Elapsed:: 0.051299989223480225ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2280 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2281 [10:35:22.586] Elapsed:: 0.020700037479400635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2282 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2283 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2284 [10:35:22.586] Elapsed:: 0.028499960899353027ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2285 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2286 [10:35:22.586] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2287 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2288 [10:35:22.586] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/package.json
Info 2289 [10:35:22.586] Elapsed:: 0.026300013065338135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2290 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2291 [10:35:22.586] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2292 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2293 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2294 [10:35:22.586] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2295 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2296 [10:35:22.586] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2297 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2298 [10:35:22.586] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/README.md
Info 2299 [10:35:22.586] Elapsed:: 0.01669996976852417ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2300 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2301 [10:35:22.586] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2302 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2303 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2304 [10:35:22.586] Elapsed:: 0.020200014114379883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2305 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2306 [10:35:22.586] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2307 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2308 [10:35:22.586] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md
Info 2309 [10:35:22.586] Elapsed:: 0.015600025653839111ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2310 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2311 [10:35:22.586] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2312 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2313 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2314 [10:35:22.586] Elapsed:: 0.01979994773864746ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2315 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2316 [10:35:22.586] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2317 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2318 [10:35:22.586] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/optionator/optionator
Info 2319 [10:35:22.586] Elapsed:: 0.034600019454956055ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2320 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2321 [10:35:22.586] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2322 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2323 [10:35:22.586] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2324 [10:35:22.586] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2325 [10:35:22.586] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2326 [10:35:22.586] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/optionator/optionator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2327 [10:35:22.586] sysLog:: /home/jabaile/work/pprof-it/node_modules/optionator:: Changing watcher to MissingFileSystemEntryWatcher
Info 2328 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2329 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js
Info 2330 [10:35:22.587] Elapsed:: 0.04530000686645508ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2331 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2332 [10:35:22.587] Elapsed:: 0.004700005054473877ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2333 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2334 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2335 [10:35:22.587] Elapsed:: 0.027899980545043945ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2336 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2337 [10:35:22.587] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_sync.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2338 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2339 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE
Info 2340 [10:35:22.587] Elapsed:: 0.03509998321533203ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2341 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2342 [10:35:22.587] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2343 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2344 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2345 [10:35:22.587] Elapsed:: 0.025099992752075195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2346 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2347 [10:35:22.587] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2348 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2349 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/external-editor/package.json
Info 2350 [10:35:22.587] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2351 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2352 [10:35:22.587] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2353 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2354 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2355 [10:35:22.587] Elapsed:: 0.021700024604797363ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2356 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2357 [10:35:22.587] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2358 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2359 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/external-editor/main
Info 2360 [10:35:22.587] Elapsed:: 0.03179997205734253ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2361 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2362 [10:35:22.587] Elapsed:: 0.01780003309249878ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2363 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2364 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2365 [10:35:22.587] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2366 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2367 [10:35:22.587] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/main :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2368 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2369 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/external-editor/README.md
Info 2370 [10:35:22.587] Elapsed:: 0.016299962997436523ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2371 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2372 [10:35:22.587] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2373 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2374 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2375 [10:35:22.587] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2376 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2377 [10:35:22.587] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2378 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2379 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js
Info 2380 [10:35:22.587] Elapsed:: 0.016000032424926758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2381 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2382 [10:35:22.587] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2383 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2384 [10:35:22.587] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2385 [10:35:22.587] Elapsed:: 0.0196000337600708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2386 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2387 [10:35:22.587] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/example_async.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2388 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2389 [10:35:22.587] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor
Info 2390 [10:35:22.587] Elapsed:: 0.033399999141693115ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2391 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2392 [10:35:22.587] Elapsed:: 0.015900015830993652ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2393 [10:35:22.587] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2394 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2395 [10:35:22.588] Elapsed:: 0.022000014781951904ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2396 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2397 [10:35:22.588] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/external-editor/external-editor :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2398 [10:35:22.588] sysLog:: /home/jabaile/work/pprof-it/node_modules/external-editor:: Changing watcher to MissingFileSystemEntryWatcher
Info 2399 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2400 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js
Info 2401 [10:35:22.588] Elapsed:: 0.02210003137588501ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2402 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2403 [10:35:22.588] Elapsed:: 0.0029999613761901855ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2404 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2405 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2406 [10:35:22.588] Elapsed:: 0.026899993419647217ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2407 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2408 [10:35:22.588] Elapsed:: 0.00850003957748413ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/build-test.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2409 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2410 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE
Info 2411 [10:35:22.588] Elapsed:: 0.03299999237060547ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2412 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2413 [10:35:22.588] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2414 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2415 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2416 [10:35:22.588] Elapsed:: 0.022700011730194092ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2417 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2418 [10:35:22.588] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2419 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2420 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js
Info 2421 [10:35:22.588] Elapsed:: 0.016400039196014404ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2422 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2423 [10:35:22.588] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2424 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2425 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2426 [10:35:22.588] Elapsed:: 0.02049994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2427 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2428 [10:35:22.588] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2429 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2430 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json
Info 2431 [10:35:22.588] Elapsed:: 0.018700003623962402ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2432 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2433 [10:35:22.588] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2434 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2435 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2436 [10:35:22.588] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2437 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2438 [10:35:22.588] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2439 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2440 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md
Info 2441 [10:35:22.588] Elapsed:: 0.015599966049194336ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2442 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2443 [10:35:22.588] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2444 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2445 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2446 [10:35:22.588] Elapsed:: 0.019800007343292236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2447 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2448 [10:35:22.588] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2449 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2450 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js
Info 2451 [10:35:22.588] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2452 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2453 [10:35:22.588] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2454 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2455 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2456 [10:35:22.588] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2457 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2458 [10:35:22.588] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/bin.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2459 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2460 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js
Info 2461 [10:35:22.588] Elapsed:: 0.016100049018859863ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2462 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2463 [10:35:22.588] Elapsed:: 0.0023000240325927734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2464 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2465 [10:35:22.588] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2466 [10:35:22.588] Elapsed:: 0.01930004358291626ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2467 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2468 [10:35:22.588] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/optional.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2469 [10:35:22.588] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2470 [10:35:22.588] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build
Info 2471 [10:35:22.589] Elapsed:: 0.031800031661987305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2472 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2473 [10:35:22.589] Elapsed:: 0.01639997959136963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2474 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2475 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2476 [10:35:22.589] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2477 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2478 [10:35:22.589] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/node-gyp-build/node-gyp-build :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2479 [10:35:22.589] sysLog:: /home/jabaile/work/pprof-it/node_modules/node-gyp-build:: Changing watcher to MissingFileSystemEntryWatcher
Info 2480 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2481 [10:35:22.589] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE
Info 2482 [10:35:22.589] Elapsed:: 0.036400020122528076ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2483 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2484 [10:35:22.589] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2485 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2486 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2487 [10:35:22.589] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2488 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2489 [10:35:22.589] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2490 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2491 [10:35:22.589] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml
Info 2492 [10:35:22.589] Elapsed:: 0.018599987030029297ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2493 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2494 [10:35:22.589] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2495 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2496 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2497 [10:35:22.589] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2498 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2499 [10:35:22.589] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2500 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2501 [10:35:22.589] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js
Info 2502 [10:35:22.589] Elapsed:: 0.016200006008148193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2503 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2504 [10:35:22.589] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2505 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2506 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2507 [10:35:22.589] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2508 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2509 [10:35:22.589] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2510 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2511 [10:35:22.589] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test
Info 2512 [10:35:22.589] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2513 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2514 [10:35:22.589] Elapsed:: 0.01510000228881836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2515 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2516 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2517 [10:35:22.589] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2518 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2519 [10:35:22.589] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/test :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2520 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2521 [10:35:22.589] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json
Info 2522 [10:35:22.589] Elapsed:: 0.019899964332580566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2523 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2524 [10:35:22.589] Elapsed:: 0.002400040626525879ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2525 [10:35:22.589] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2526 [10:35:22.589] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2527 [10:35:22.590] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2528 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2529 [10:35:22.590] Elapsed:: 0.016700029373168945ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2530 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2531 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example
Info 2532 [10:35:22.590] Elapsed:: 0.037199974060058594ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2533 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2534 [10:35:22.590] Elapsed:: 0.016099989414215088ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2535 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2536 [10:35:22.590] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2537 [10:35:22.590] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2538 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2539 [10:35:22.590] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/example :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2540 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2541 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore
Info 2542 [10:35:22.590] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2543 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2544 [10:35:22.590] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2545 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2546 [10:35:22.590] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2547 [10:35:22.590] Elapsed:: 0.021399974822998047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2548 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2549 [10:35:22.590] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2550 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2551 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown
Info 2552 [10:35:22.590] Elapsed:: 0.0163000226020813ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2553 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2554 [10:35:22.590] Elapsed:: 0.003399968147277832ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2555 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2556 [10:35:22.590] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2557 [10:35:22.590] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2558 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2559 [10:35:22.590] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/readme.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2560 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2561 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify
Info 2562 [10:35:22.590] Elapsed:: 0.03279995918273926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2563 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2564 [10:35:22.590] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2565 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2566 [10:35:22.590] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2567 [10:35:22.590] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2568 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2569 [10:35:22.590] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify/json-stable-stringify-without-jsonify :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2570 [10:35:22.590] sysLog:: /home/jabaile/work/pprof-it/node_modules/json-stable-stringify-without-jsonify:: Changing watcher to MissingFileSystemEntryWatcher
Info 2571 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2572 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md
Info 2573 [10:35:22.590] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2574 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2575 [10:35:22.590] Elapsed:: 0.003000020980834961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2576 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2577 [10:35:22.590] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2578 [10:35:22.590] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2579 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2580 [10:35:22.590] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2581 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2582 [10:35:22.590] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/map-obj/index.js
Info 2583 [10:35:22.590] Elapsed:: 0.017199993133544922ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2584 [10:35:22.590] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2585 [10:35:22.590] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2586 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2587 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2588 [10:35:22.591] Elapsed:: 0.020700037479400635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2589 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2590 [10:35:22.591] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2591 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2592 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/map-obj/package.json
Info 2593 [10:35:22.591] Elapsed:: 0.01900005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2594 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2595 [10:35:22.591] Elapsed:: 0.0025000572204589844ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2596 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2597 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2598 [10:35:22.591] Elapsed:: 0.01979994773864746ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2599 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2600 [10:35:22.591] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2601 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2602 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/map-obj/license
Info 2603 [10:35:22.591] Elapsed:: 0.03299999237060547ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2604 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2605 [10:35:22.591] Elapsed:: 0.018000006675720215ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2606 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2607 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2608 [10:35:22.591] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2609 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2610 [10:35:22.591] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2611 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2612 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts
Info 2613 [10:35:22.591] Elapsed:: 0.03400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2614 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2615 [10:35:22.591] Elapsed:: 0.0032999515533447266ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2616 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2617 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2618 [10:35:22.591] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2619 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2620 [10:35:22.591] Elapsed:: 0.0076999664306640625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2621 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2622 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj
Info 2623 [10:35:22.591] Elapsed:: 0.029600024223327637ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2624 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2625 [10:35:22.591] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2626 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2627 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2628 [10:35:22.591] Elapsed:: 0.02110004425048828ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2629 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2630 [10:35:22.591] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/map-obj/map-obj :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2631 [10:35:22.591] sysLog:: /home/jabaile/work/pprof-it/node_modules/map-obj:: Changing watcher to MissingFileSystemEntryWatcher
Info 2632 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2633 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md
Info 2634 [10:35:22.591] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2635 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2636 [10:35:22.591] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2637 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2638 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2639 [10:35:22.591] Elapsed:: 0.023899972438812256ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2640 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2641 [10:35:22.591] Elapsed:: 0.00839996337890625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2642 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2643 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js
Info 2644 [10:35:22.591] Elapsed:: 0.01699995994567871ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2645 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2646 [10:35:22.591] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2647 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2648 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2649 [10:35:22.591] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2650 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2651 [10:35:22.591] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2652 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2653 [10:35:22.591] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json
Info 2654 [10:35:22.591] Elapsed:: 0.019299983978271484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2655 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2656 [10:35:22.591] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2657 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2658 [10:35:22.591] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2659 [10:35:22.591] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2660 [10:35:22.591] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2661 [10:35:22.592] Elapsed:: 0.0076999664306640625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2662 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2663 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/trim-newlines/license
Info 2664 [10:35:22.592] Elapsed:: 0.03350001573562622ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2665 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2666 [10:35:22.592] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2667 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2668 [10:35:22.592] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2669 [10:35:22.592] Elapsed:: 0.021699965000152588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2670 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2671 [10:35:22.592] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2672 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2673 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts
Info 2674 [10:35:22.592] Elapsed:: 0.033300042152404785ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2675 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2676 [10:35:22.592] Elapsed:: 0.0031999945640563965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2677 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2678 [10:35:22.592] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2679 [10:35:22.592] Elapsed:: 0.023899972438812256ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2680 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2681 [10:35:22.592] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2682 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2683 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines
Info 2684 [10:35:22.592] Elapsed:: 0.029399991035461426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2685 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2686 [10:35:22.592] Elapsed:: 0.016099989414215088ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2687 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2688 [10:35:22.592] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2689 [10:35:22.592] Elapsed:: 0.021099984645843506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2690 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2691 [10:35:22.592] Elapsed:: 0.007499992847442627ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/trim-newlines/trim-newlines :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2692 [10:35:22.592] sysLog:: /home/jabaile/work/pprof-it/node_modules/trim-newlines:: Changing watcher to MissingFileSystemEntryWatcher
Info 2693 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2694 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js
Info 2695 [10:35:22.592] Elapsed:: 0.024200022220611572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2696 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2697 [10:35:22.592] Elapsed:: 0.0029999613761901855ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2698 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2699 [10:35:22.592] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2700 [10:35:22.592] Elapsed:: 0.023099958896636963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2701 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2702 [10:35:22.592] Elapsed:: 0.00820004940032959ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/escape.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2703 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2704 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map
Info 2705 [10:35:22.592] Elapsed:: 0.01669996976852417ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2706 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2707 [10:35:22.592] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2708 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2709 [10:35:22.592] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2710 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2711 [10:35:22.592] Elapsed:: 0.006600022315979004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2712 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2713 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map
Info 2714 [10:35:22.592] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2715 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2716 [10:35:22.592] Elapsed:: 0.0029000043869018555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2717 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2718 [10:35:22.592] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2719 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2720 [10:35:22.592] Elapsed:: 0.006199955940246582ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2721 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2722 [10:35:22.592] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map
Info 2723 [10:35:22.592] Elapsed:: 0.015299975872039795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2724 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2725 [10:35:22.592] Elapsed:: 0.00289994478225708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2726 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2727 [10:35:22.592] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2728 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2729 [10:35:22.592] Elapsed:: 0.0057999491691589355ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/ast.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2730 [10:35:22.592] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2731 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts
Info 2732 [10:35:22.593] Elapsed:: 0.03450000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2733 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2734 [10:35:22.593] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2735 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2736 [10:35:22.593] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2737 [10:35:22.593] Elapsed:: 0.08959996700286865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2738 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2739 [10:35:22.593] Elapsed:: 0.020200014114379883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2740 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2741 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map
Info 2742 [10:35:22.593] Elapsed:: 0.03270000219345093ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2743 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2744 [10:35:22.593] Elapsed:: 0.005000054836273193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2745 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2746 [10:35:22.593] Elapsed:: 0.015200018882751465ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2747 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2748 [10:35:22.593] Elapsed:: 0.011100053787231445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/unescape.js.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2749 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2750 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map
Info 2751 [10:35:22.593] Elapsed:: 0.02649998664855957ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2752 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2753 [10:35:22.593] Elapsed:: 0.0042999982833862305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2754 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2755 [10:35:22.593] Elapsed:: 0.014499962329864502ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2756 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2757 [10:35:22.593] Elapsed:: 0.010599970817565918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2758 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2759 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js
Info 2760 [10:35:22.593] Elapsed:: 0.025600016117095947ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2761 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2762 [10:35:22.593] Elapsed:: 0.004100024700164795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2763 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2764 [10:35:22.593] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2765 [10:35:22.593] Elapsed:: 0.034999966621398926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2766 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2767 [10:35:22.593] Elapsed:: 0.01410001516342163ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2768 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2769 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js
Info 2770 [10:35:22.593] Elapsed:: 0.02640002965927124ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2771 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2772 [10:35:22.593] Elapsed:: 0.004700005054473877ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2773 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2774 [10:35:22.593] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2775 [10:35:22.593] Elapsed:: 0.033000051975250244ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2776 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2777 [10:35:22.593] Elapsed:: 0.014400005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/assert-valid-pattern.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2778 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2779 [10:35:22.593] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json
Info 2780 [10:35:22.593] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2781 [10:35:22.593] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2782 [10:35:22.594] Elapsed:: 0.0046999454498291016ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2783 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2784 [10:35:22.594] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2785 [10:35:22.594] Elapsed:: 0.03579998016357422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2786 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2787 [10:35:22.594] Elapsed:: 0.015400052070617676ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2788 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2789 [10:35:22.594] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js
Info 2790 [10:35:22.594] Elapsed:: 0.027199983596801758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2791 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2792 [10:35:22.594] Elapsed:: 0.004500031471252441ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2793 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2794 [10:35:22.594] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2795 [10:35:22.594] Elapsed:: 0.033100008964538574ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brace-expressions.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2796 [10:35:22.594] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/minimatch/dist/mjs/brac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment