Skip to content

Instantly share code, notes, and snippets.

@jakebailey
Created April 29, 2024 17:42
Show Gist options
  • Save jakebailey/573e83c9a81a0e0c950c603722e3ed29 to your computer and use it in GitHub Desktop.
Save jakebailey/573e83c9a81a0e0c950c603722e3ed29 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
Info 0 [10:42:00.972] Starting TS Server
Info 1 [10:42:00.973] Version: 5.5.0-dev.20240424
Info 2 [10:42:00.973] 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-50ef3cc220842b1fbb50.tmp* --logVerbosity verbose --logFile /home/jabaile/.vscode-server/data/logs/20240426T194823/exthost2/vscode.typescript-language-features/tsserver-log-Iz9u1z/tsserver.log --locale en --noGetErrOnBackgroundUpdate --validateDefaultNpmLocation --useNodeIpc
Info 3 [10:42:00.973] Platform: linux NodeVersion: v18.18.2 CaseSensitive: true
Info 4 [10:42:00.973] ServerMode: undefined hasUnknownServerMode: undefined
Info 5 [10:42:00.977] Binding...
Info 6 [10:42:00.982] request:
{
"seq": 0,
"type": "request",
"command": "configure",
"arguments": {
"hostInfo": "vscode",
"preferences": {
"providePrefixAndSuffixTextForRename": true,
"allowRenameOfImportPath": true,
"includePackageJsonAutoImports": "auto",
"excludeLibrarySymbolsInNavTo": true
},
"watchOptions": {}
}
}
Info 7 [10:42:00.982] Host information vscode
Info 8 [10:42:00.982] Host watch options changed to undefined, it will be take effect for next watches.
Info 9 [10:42:00.982] response:
{"seq":0,"type":"response","command":"configure","request_seq":0,"success":true}
Perf 10 [10:42:00.983] 0::configure: async elapsed time (in milliseconds) 0.9849
Info 11 [10:42:00.983] 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:42:00.983] 1::compilerOptionsForInferredProjects: elapsed time (in milliseconds) 0.2715
Info 13 [10:42:00.983] response:
{"seq":0,"type":"response","command":"compilerOptionsForInferredProjects","request_seq":1,"success":true,"body":true}
Info 14 [10:42:00.983] event:
{"seq":0,"type":"event","event":"typingsInstallerPid","body":{"pid":1741358}}
Info 15 [10:42:01.109] 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 16 [10:42:01.111] 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 17 [10:42:01.111] Creating configuration project /home/jabaile/work/pprof-it/tsconfig.json
Info 18 [10:42:01.113] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/tsconfig.json 2000 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Config file
Info 19 [10:42:01.113] 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 20 [10:42:01.125] 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,
"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 21 [10:42:01.125] 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 22 [10:42:01.126] 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:42:01.217] Elapsed:: 90.8173999786377ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 24 [10:42:01.217] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src/main.ts 500 undefined WatchType: Closed Script info
Info 25 [10:42:01.222] Starting updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json
Info 26 [10:42:01.248] 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:42:01.248] Elapsed:: 0.013000011444091797ms 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 28 [10:42:01.250] 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:42:01.250] Elapsed:: 0.007299959659576416ms 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 30 [10:42:01.250] 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 31 [10:42:01.261] 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 32 [10:42:01.283] 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 33 [10:42:01.521] 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:42:01.521] Elapsed:: 0.7075999975204468ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 35 [10:42:01.522] 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:42:01.523] Elapsed:: 0.7102000117301941ms 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 37 [10:42:01.596] 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 38 [10:42:01.601] 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 39 [10:42:01.602] 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 40 [10:42:01.603] 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 41 [10:42:01.739] 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 42 [10:42:01.739] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 43 [10:42:01.739] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/src 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 44 [10:42:01.740] 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 45 [10:42:01.742] 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 46 [10:42:01.742] 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 47 [10:42:01.742] 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 48 [10:42:01.742] 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 49 [10:42:01.743] 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 50 [10:42:01.743] 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 51 [10:42:01.743] 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 52 [10:42:01.743] 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 53 [10:42:01.743] 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 54 [10:42:01.744] 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 55 [10:42:01.744] 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 56 [10:42:01.744] 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 57 [10:42:01.744] 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 58 [10:42:01.744] 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 59 [10:42:01.744] Elapsed:: 0.009199976921081543ms 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 60 [10:42:01.744] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 61 [10:42:01.745] Elapsed:: 0.12839996814727783ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 62 [10:42:01.745] Finishing updateGraphWorker: Project: /home/jabaile/work/pprof-it/tsconfig.json projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed: 522.9898999929428ms
Info 63 [10:42:01.745] Project '/home/jabaile/work/pprof-it/tsconfig.json' (Configured)
Info 64 [10:42:01.753] Files (189)
/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/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.31'
Type library referenced via 'node' from file 'node_modules/undici-types/formdata.d.ts' with packageId '@types/node/index.d.ts@18.19.31'
Entry point for implicit type library 'node' with packageId '@types/node/index.d.ts@18.19.31'
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.1.0'
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.1.0'
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.1.0'
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.1.0'
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.1.0'
Imported via "pprof-format" from file 'src/index.ts' with packageId 'pprof-format/dist/index.d.ts@2.1.0'
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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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/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.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/valid.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/inc.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/diff.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/major.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/minor.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/patch.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/prerelease.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/compare.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/rcompare.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
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.8'
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.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/sort.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/rsort.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/gt.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/lt.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/eq.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/neq.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/gte.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/lte.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/cmp.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/coerce.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "./semver" from file 'node_modules/@types/semver/classes/comparator.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "./semver" from file 'node_modules/@types/semver/classes/range.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/functions/satisfies.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
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.8'
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.8'
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.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "../classes/semver" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
Imported via "./classes/semver" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/semver.d.ts@7.5.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
Imported via "./classes/comparator" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/comparator.d.ts@7.5.8'
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.8'
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.8'
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.8'
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.8'
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.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/valid.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/intersects.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/simplify.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "../classes/range" from file 'node_modules/@types/semver/ranges/subset.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
Imported via "./classes/range" from file 'node_modules/@types/semver/index.d.ts' with packageId '@types/semver/classes/range.d.ts@7.5.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
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.8'
Imported via "../index" from file 'node_modules/@types/semver/classes/semver.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/parse.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/valid.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/clean.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/inc.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/diff.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/major.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/minor.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/patch.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/prerelease.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/compare.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/rcompare.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/compare-build.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/sort.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/rsort.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/gt.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/lt.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/eq.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/neq.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/gte.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/lte.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/cmp.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/coerce.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/classes/range.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/classes/comparator.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/functions/satisfies.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/max-satisfying.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/min-satisfying.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/to-comparators.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/min-version.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/valid.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/outside.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/gtr.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/ltr.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/intersects.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/simplify.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
Imported via "../index" from file 'node_modules/@types/semver/ranges/subset.d.ts' with packageId '@types/semver/index.d.ts@7.5.8'
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 65 [10:42:01.753] -----------------------------------------------
Info 66 [10:42:01.756] FileWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/package.json 250 undefined WatchType: package.json file
Info 67 [10:42:01.758] AutoImportProviderProject: found 5 root files in 2 dependencies 0 referenced projects in 2.474999964237213 ms
Info 68 [10:42:01.759] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1*
Info 69 [10:42:01.760] 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 70 [10:42:01.762] DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 71 [10:42:01.762] Elapsed:: 0.009600043296813965ms DirectoryWatcher:: Added:: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 72 [10:42:01.762] 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 73 [10:42:01.774] 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 74 [10:42:01.778] 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 75 [10:42:01.778] 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 76 [10:42:01.778] 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 77 [10:42:01.778] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* projectStateVersion: 1 projectProgramVersion: 0 structureChanged: true structureIsReused:: Not Elapsed: 19.344799995422363ms
Info 78 [10:42:01.778] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 79 [10:42:01.780] 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.31'
Type library referenced via 'node' from file 'node_modules/undici-types/formdata.d.ts' with packageId '@types/node/index.d.ts@18.19.31'
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 80 [10:42:01.784] -----------------------------------------------
Info 81 [10:42:01.784] event:
{"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/home/jabaile/work/pprof-it/tsconfig.json"}}
Info 82 [10:42:01.785] 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":187,"dtsSize":2509436,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["es2020"],"module":"node16","target":"es2020","strict":true,"esModuleInterop":true,"skipLibCheck":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 83 [10:42:01.786] 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 84 [10:42:01.786] Project '/home/jabaile/work/pprof-it/tsconfig.json' (Configured)
Info 84 [10:42:01.787] Files (189)
Info 84 [10:42:01.787] -----------------------------------------------
Info 84 [10:42:01.787] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider)
Info 84 [10:42:01.787] Files (93)
Info 84 [10:42:01.787] -----------------------------------------------
Info 84 [10:42:01.787] Open files:
Info 84 [10:42:01.787] FileName: /home/jabaile/work/pprof-it/src/index.ts ProjectRootPath: /home/jabaile/work/pprof-it
Info 84 [10:42:01.787] Projects: /home/jabaile/work/pprof-it/tsconfig.json
Perf 84 [10:42:01.787] 2::updateOpen: elapsed time (in milliseconds) 677.4885
Info 85 [10:42:01.787] response:
{"seq":0,"type":"response","command":"updateOpen","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":542.3346999883652,"createAutoImportProviderProgramDurationMs":29.007799983024597},"body":true}
Info 86 [10:42:01.788] request:
{
"seq": 4,
"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 87 [10:42:01.788] Host configuration update for file /home/jabaile/work/pprof-it/src/index.ts
Info 88 [10:42:01.788] response:
{"seq":0,"type":"response","command":"configure","request_seq":4,"success":true}
Perf 89 [10:42:01.788] 4::configure: async elapsed time (in milliseconds) 0.3637
Info 90 [10:42:01.788] request:
{
"seq": 5,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 91 [10:42:01.807] 5::getApplicableRefactors: elapsed time (in milliseconds) 18.6087
Info 92 [10:42:01.807] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":5,"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 93 [10:42:01.807] request:
{
"seq": 6,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 94 [10:42:01.808] 6::geterr: async elapsed time (in milliseconds) 0.5565
Info 95 [10:42:01.809] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 96 [10:42:01.914] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 97 [10:42:01.917] 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 98 [10:42:01.917] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":6}}
Info 99 [10:42:02.235] request:
{
"seq": 7,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 100 [10:42:02.236] 7::getApplicableRefactors: elapsed time (in milliseconds) 0.8243
Info 101 [10:42:02.236] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":7,"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 102 [10:42:07.486] request:
{
"seq": 8,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 103 [10:42:07.486] 8::geterr: async elapsed time (in milliseconds) 0.1315
Info 104 [10:42:07.486] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 105 [10:42:07.486] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 106 [10:42:07.487] 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 107 [10:42:07.487] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":8}}
Info 108 [10:42:07.799] request:
{
"seq": 9,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 109 [10:42:07.799] 9::getApplicableRefactors: elapsed time (in milliseconds) 0.7225
Info 110 [10:42:07.799] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":9,"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 111 [10:42:14.263] request:
{
"seq": 10,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 112 [10:42:14.263] 10::geterr: async elapsed time (in milliseconds) 0.1433
Info 113 [10:42:14.263] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 114 [10:42:14.263] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 115 [10:42:14.264] 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 116 [10:42:14.265] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":10}}
Info 117 [10:42:14.571] request:
{
"seq": 11,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 118 [10:42:14.572] 11::getApplicableRefactors: elapsed time (in milliseconds) 0.7230
Info 119 [10:42:14.572] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":11,"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 120 [10:42:22.908] request:
{
"seq": 12,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 1,
"startOffset": 1,
"endLine": 1,
"endOffset": 1,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 121 [10:42:22.909] 12::getApplicableRefactors: elapsed time (in milliseconds) 0.9049
Info 122 [10:42:22.909] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":12,"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":1,"offset":1},"end":{"line":351,"offset":2}}}]},{"name":"Move to file","description":"Move to file","actions":[{"name":"Move to file","description":"Move to file","kind":"refactor.move.file","range":{"start":{"line":1,"offset":1},"end":{"line":351,"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":"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 123 [10:42:22.914] request:
{
"seq": 13,
"type": "request",
"command": "projectInfo",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"needFileNameList": false
}
}
Perf 124 [10:42:22.915] 13::projectInfo: elapsed time (in milliseconds) 0.3313
Info 125 [10:42:22.915] response:
{"seq":0,"type":"response","command":"projectInfo","request_seq":13,"success":true,"body":{"configFileName":"/home/jabaile/work/pprof-it/tsconfig.json","languageServiceDisabled":false}}
Info 126 [10:42:23.022] request:
{
"seq": 14,
"type": "request",
"command": "encodedSemanticClassifications-full",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"start": 4434,
"length": 2691,
"format": "2020"
}
}
Perf 127 [10:42:23.031] 14::encodedSemanticClassifications-full: elapsed time (in milliseconds) 8.4363
Info 128 [10:42:23.031] response:
{"seq":0,"type":"response","command":"encodedSemanticClassifications-full","request_seq":14,"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 129 [10:42:23.128] request:
{
"seq": 15,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 130 [10:42:23.128] 15::getApplicableRefactors: elapsed time (in milliseconds) 0.6027
Info 131 [10:42:23.128] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":15,"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 132 [10:42:23.210] request:
{
"seq": 16,
"type": "request",
"command": "geterr",
"arguments": {
"delay": 0,
"files": [
"/home/jabaile/work/pprof-it/src/index.ts"
]
}
}
Perf 133 [10:42:23.210] 16::geterr: async elapsed time (in milliseconds) 0.1473
Info 134 [10:42:23.210] event:
{"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 135 [10:42:23.210] event:
{"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/home/jabaile/work/pprof-it/src/index.ts","diagnostics":[]}}
Info 136 [10:42:23.211] 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 137 [10:42:23.211] event:
{"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":16}}
Info 138 [10:42:23.528] request:
{
"seq": 17,
"type": "request",
"command": "getApplicableRefactors",
"arguments": {
"file": "/home/jabaile/work/pprof-it/src/index.ts",
"startLine": 199,
"startOffset": 41,
"endLine": 199,
"endOffset": 41,
"triggerReason": "implicit",
"includeInteractiveActions": true
}
}
Perf 139 [10:42:23.528] 17::getApplicableRefactors: elapsed time (in milliseconds) 0.7400
Info 140 [10:42:23.528] response:
{"seq":0,"type":"response","command":"getApplicableRefactors","request_seq":17,"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 141 [10:42:27.285] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 142 [10:42:27.286] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes
Info 143 [10:42:27.286] Elapsed:: 0.4875999689102173ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 144 [10:42:27.286] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 145 [10:42:27.286] Elapsed:: 0.15079998970031738ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 146 [10:42:27.286] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 147 [10:42:27.286] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation
Info 148 [10:42:27.286] Elapsed:: 0.2565000057220459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 149 [10:42:27.286] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 150 [10:42:27.286] Elapsed:: 0.03459995985031128ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@humanwhocodes/@humanwhocodes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 151 [10:42:27.286] sysLog:: /home/jabaile/work/pprof-it/node_modules/@humanwhocodes:: Changing watcher to MissingFileSystemEntryWatcher
Info 152 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 153 [10:42:27.287] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs
Info 154 [10:42:27.287] Elapsed:: 0.1419999599456787ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 155 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 156 [10:42:27.287] Elapsed:: 0.058000028133392334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 157 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 158 [10:42:27.287] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 159 [10:42:27.287] Elapsed:: 0.13510000705718994ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 160 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 161 [10:42:27.287] Elapsed:: 0.02129995822906494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@isaacs/@isaacs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 162 [10:42:27.287] sysLog:: /home/jabaile/work/pprof-it/node_modules/@isaacs:: Changing watcher to MissingFileSystemEntryWatcher
Info 163 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 164 [10:42:27.287] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib
Info 165 [10:42:27.287] Elapsed:: 0.058099985122680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 166 [10:42:27.287] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /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:42:27.288] Elapsed:: 0.038699984550476074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 168 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 169 [10:42:27.288] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 170 [10:42:27.288] Elapsed:: 0.044700026512145996ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 171 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 172 [10:42:27.288] Elapsed:: 0.014999985694885254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@nodelib/@nodelib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 173 [10:42:27.288] sysLog:: /home/jabaile/work/pprof-it/node_modules/@nodelib:: Changing watcher to MissingFileSystemEntryWatcher
Info 174 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 175 [10:42:27.288] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs
Info 176 [10:42:27.288] Elapsed:: 0.05760002136230469ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 177 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 178 [10:42:27.288] Elapsed:: 0.03229999542236328ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 179 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: 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:42:27.288] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 181 [10:42:27.288] Elapsed:: 0.04309999942779541ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 182 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 183 [10:42:27.288] Elapsed:: 0.014999985694885254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@pkgjs/@pkgjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 184 [10:42:27.288] sysLog:: /home/jabaile/work/pprof-it/node_modules/@pkgjs:: Changing watcher to MissingFileSystemEntryWatcher
Info 185 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 186 [10:42:27.288] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap
Info 187 [10:42:27.288] Elapsed:: 0.05629998445510864ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 188 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 189 [10:42:27.288] Elapsed:: 0.03140002489089966ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 190 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 191 [10:42:27.288] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 192 [10:42:27.288] Elapsed:: 0.16670000553131104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 193 [10:42:27.288] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 194 [10:42:27.288] Elapsed:: 0.02469998598098755ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@ungap/@ungap :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 195 [10:42:27.288] sysLog:: /home/jabaile/work/pprof-it/node_modules/@ungap:: Changing watcher to MissingFileSystemEntryWatcher
Info 196 [10:42:27.302] sysLog:: /home/jabaile/work/pprof-it/node_modules/dprint:: Changing watcher to PresentFileSystemEntryWatcher
Info 197 [10:42:27.304] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json 1:: 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 198 [10:42:27.304] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 199 [10:42:27.304] Elapsed:: 0.12860000133514404ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json 1:: 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 200 [10:42:27.304] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json 2:: 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 201 [10:42:27.304] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 202 [10:42:27.304] Elapsed:: 0.03049999475479126ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json 2:: 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 203 [10:42:27.304] sysLog:: /home/jabaile/work/pprof-it/node_modules/foreground-child/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 204 [10:42:27.305] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json 1:: 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 205 [10:42:27.305] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 206 [10:42:27.305] Elapsed:: 0.025399982929229736ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json 1:: 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 207 [10:42:27.305] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json 2:: 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 208 [10:42:27.305] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 209 [10:42:27.305] Elapsed:: 0.022799968719482422ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json 2:: 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 210 [10:42:27.305] sysLog:: /home/jabaile/work/pprof-it/node_modules/pprof-format/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 211 [10:42:27.305] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 1:: 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 212 [10:42:27.305] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 213 [10:42:27.305] Elapsed:: 0.02959996461868286ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 1:: 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 214 [10:42:27.305] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 215 [10:42:27.305] Elapsed:: 0.00830000638961792ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 216 [10:42:27.306] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2:: 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 217 [10:42:27.306] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 218 [10:42:27.306] Elapsed:: 0.020299971103668213ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2:: 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 219 [10:42:27.306] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 220 [10:42:27.306] Elapsed:: 0.0054000020027160645ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 221 [10:42:27.306] sysLog:: /home/jabaile/work/pprof-it/node_modules/signal-exit/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 222 [10:42:27.306] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/package.json 1:: 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 223 [10:42:27.306] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 224 [10:42:27.306] Elapsed:: 0.1324000358581543ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/package.json 1:: 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 225 [10:42:27.306] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/package.json 2:: 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 226 [10:42:27.306] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 227 [10:42:27.306] Elapsed:: 0.03100001811981201ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/package.json 2:: 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 228 [10:42:27.306] sysLog:: /home/jabaile/work/pprof-it/node_modules/source-map/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 229 [10:42:27.306] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 1:: 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 230 [10:42:27.307] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 231 [10:42:27.307] Elapsed:: 0.018700003623962402ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 1:: 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 232 [10:42:27.307] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 233 [10:42:27.307] Elapsed:: 0.009400010108947754ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 234 [10:42:27.307] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2:: 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 235 [10:42:27.307] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 236 [10:42:27.307] Elapsed:: 0.022799968719482422ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2:: 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 237 [10:42:27.307] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 238 [10:42:27.307] Elapsed:: 0.008699953556060791ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 239 [10:42:27.307] sysLog:: /home/jabaile/work/pprof-it/node_modules/undici-types/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 240 [10:42:27.307] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 241 [10:42:27.307] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info
Info 242 [10:42:27.307] Elapsed:: 0.080299973487854ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 243 [10:42:27.307] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-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 244 [10:42:27.307] Elapsed:: 0.053700029850006104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-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 245 [10:42:27.307] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 246 [10:42:27.307] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 247 [10:42:27.307] Elapsed:: 0.042099952697753906ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 248 [10:42:27.307] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 249 [10:42:27.307] Elapsed:: 0.017300009727478027ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ci-info/ci-info :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 250 [10:42:27.307] sysLog:: /home/jabaile/work/pprof-it/node_modules/ci-info:: Changing watcher to MissingFileSystemEntryWatcher
Info 251 [10:42:27.307] 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 252 [10:42:27.307] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/delay/delay
Info 253 [10:42:27.307] Elapsed:: 0.05810004472732544ms 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 254 [10:42:27.307] 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 255 [10:42:27.307] Elapsed:: 0.03949999809265137ms 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 256 [10:42:27.307] 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 257 [10:42:27.307] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 258 [10:42:27.307] Elapsed:: 0.0307999849319458ms 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 259 [10:42:27.307] 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 260 [10:42:27.308] Elapsed:: 0.08399999141693115ms 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 261 [10:42:27.308] sysLog:: /home/jabaile/work/pprof-it/node_modules/delay:: Changing watcher to MissingFileSystemEntryWatcher
Info 262 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 263 [10:42:27.308] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort
Info 264 [10:42:27.308] Elapsed:: 0.060800015926361084ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 265 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 266 [10:42:27.308] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /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:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 268 [10:42:27.308] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 269 [10:42:27.308] Elapsed:: 0.03680002689361572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 270 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 271 [10:42:27.308] Elapsed:: 0.01930004358291626ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort/eslint-plugin-simple-import-sort :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 272 [10:42:27.308] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint-plugin-simple-import-sort:: Changing watcher to MissingFileSystemEntryWatcher
Info 273 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 274 [10:42:27.308] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/human-id/human-id
Info 275 [10:42:27.308] Elapsed:: 0.06540000438690186ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 276 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /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:42:27.308] Elapsed:: 0.03280001878738403ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /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:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: 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:42:27.308] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 280 [10:42:27.308] Elapsed:: 0.031199991703033447ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: 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:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 282 [10:42:27.308] Elapsed:: 0.011700034141540527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/human-id/human-id :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 283 [10:42:27.308] sysLog:: /home/jabaile/work/pprof-it/node_modules/human-id:: Changing watcher to MissingFileSystemEntryWatcher
Info 284 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 285 [10:42:27.308] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/dprint/dprint
Info 286 [10:42:27.308] Elapsed:: 0.056599974632263184ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 287 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /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:42:27.308] Elapsed:: 0.033000051975250244ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 289 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 290 [10:42:27.308] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 291 [10:42:27.308] Elapsed:: 0.03249996900558472ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 292 [10:42:27.308] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 293 [10:42:27.308] Elapsed:: 0.011200010776519775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/dprint/dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 294 [10:42:27.308] sysLog:: /home/jabaile/work/pprof-it/node_modules/dprint:: Changing watcher to MissingFileSystemEntryWatcher
Info 295 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 296 [10:42:27.309] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ignore/ignore
Info 297 [10:42:27.309] Elapsed:: 0.055599987506866455ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 298 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /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:42:27.309] Elapsed:: 0.029900014400482178ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 300 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 301 [10:42:27.309] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 302 [10:42:27.309] Elapsed:: 0.028299987316131592ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 303 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 304 [10:42:27.309] Elapsed:: 0.012100040912628174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ignore/ignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 305 [10:42:27.309] sysLog:: /home/jabaile/work/pprof-it/node_modules/ignore:: Changing watcher to MissingFileSystemEntryWatcher
Info 306 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 307 [10:42:27.309] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string
Info 308 [10:42:27.309] Elapsed:: 0.05579996109008789ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 309 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 310 [10:42:27.309] Elapsed:: 0.03059995174407959ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 311 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: 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:42:27.309] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 313 [10:42:27.309] Elapsed:: 0.0326000452041626ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 314 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 315 [10:42:27.309] Elapsed:: 0.013399958610534668ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/indent-string/indent-string :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 316 [10:42:27.309] sysLog:: /home/jabaile/work/pprof-it/node_modules/indent-string:: Changing watcher to MissingFileSystemEntryWatcher
Info 317 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 318 [10:42:27.309] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare
Info 319 [10:42:27.309] Elapsed:: 0.05320000648498535ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 320 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 321 [10:42:27.309] Elapsed:: 0.030900001525878906ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 322 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: 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:42:27.309] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 324 [10:42:27.309] Elapsed:: 0.02950000762939453ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 325 [10:42:27.309] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 326 [10:42:27.309] Elapsed:: 0.010300040245056152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/natural-compare/natural-compare :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 327 [10:42:27.309] sysLog:: /home/jabaile/work/pprof-it/node_modules/natural-compare:: Changing watcher to MissingFileSystemEntryWatcher
Info 328 [10:42:27.309] 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 329 [10:42:27.310] 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 330 [10:42:27.310] Elapsed:: 0.05339998006820679ms 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 331 [10:42:27.310] 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 332 [10:42:27.310] Elapsed:: 0.14480000734329224ms 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 333 [10:42:27.310] 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 334 [10:42:27.310] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 335 [10:42:27.310] Elapsed:: 0.035899996757507324ms 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 336 [10:42:27.310] 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 337 [10:42:27.310] Elapsed:: 0.010399997234344482ms 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 338 [10:42:27.310] sysLog:: /home/jabaile/work/pprof-it/node_modules/node-gyp-build:: Changing watcher to MissingFileSystemEntryWatcher
Info 339 [10:42:27.310] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 340 [10:42:27.311] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize
Info 341 [10:42:27.311] Elapsed:: 0.06760001182556152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 342 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 343 [10:42:27.311] Elapsed:: 0.0383000373840332ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 344 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 345 [10:42:27.311] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 346 [10:42:27.311] Elapsed:: 0.033199965953826904ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 347 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 348 [10:42:27.311] Elapsed:: 0.011699974536895752ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pluralize/pluralize :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 349 [10:42:27.311] sysLog:: /home/jabaile/work/pprof-it/node_modules/pluralize:: Changing watcher to MissingFileSystemEntryWatcher
Info 350 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 351 [10:42:27.311] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from
Info 352 [10:42:27.311] Elapsed:: 0.06040000915527344ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 353 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 354 [10:42:27.311] Elapsed:: 0.03029996156692505ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 355 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 356 [10:42:27.311] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 357 [10:42:27.311] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 358 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 359 [10:42:27.311] Elapsed:: 0.011900007724761963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/resolve-from/resolve-from :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 360 [10:42:27.311] sysLog:: /home/jabaile/work/pprof-it/node_modules/resolve-from:: Changing watcher to MissingFileSystemEntryWatcher
Info 361 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 362 [10:42:27.311] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types
Info 363 [10:42:27.311] Elapsed:: 0.05070000886917114ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 364 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-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 365 [10:42:27.311] Elapsed:: 0.02929997444152832ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-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 366 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 367 [10:42:27.311] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 368 [10:42:27.311] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 369 [10:42:27.311] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 370 [10:42:27.311] Elapsed:: 0.011299967765808105ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/undici-types/undici-types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 371 [10:42:27.311] sysLog:: /home/jabaile/work/pprof-it/node_modules/undici-types:: Changing watcher to MissingFileSystemEntryWatcher
Info 372 [10:42:27.339] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json 1:: 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 373 [10:42:27.339] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 374 [10:42:27.339] Elapsed:: 0.03949999809265137ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json 1:: 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 375 [10:42:27.339] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json 2:: 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 376 [10:42:27.339] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 377 [10:42:27.339] Elapsed:: 0.023200035095214844ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json 2:: 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 378 [10:42:27.339] sysLog:: /home/jabaile/work/pprof-it/node_modules/@datadog/pprof/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 379 [10:42:27.340] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json 1:: 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 380 [10:42:27.340] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json
Info 381 [10:42:27.340] Scheduled: *ensureProjectForOpenFiles*
Info 382 [10:42:27.340] Elapsed:: 0.5108000040054321ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json 1:: 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 383 [10:42:27.340] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json 2:: 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 384 [10:42:27.340] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 385 [10:42:27.340] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 386 [10:42:27.340] Elapsed:: 0.19009995460510254ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json 2:: 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 387 [10:42:27.340] sysLog:: /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/tsconfig.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 388 [10:42:27.341] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json 1:: 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 389 [10:42:27.341] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 390 [10:42:27.341] Elapsed:: 0.05200004577636719ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json 1:: 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 391 [10:42:27.341] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json 2:: 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 392 [10:42:27.341] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 393 [10:42:27.341] Elapsed:: 0.03739994764328003ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json 2:: 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 394 [10:42:27.341] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 395 [10:42:27.341] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 1:: 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 396 [10:42:27.342] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 397 [10:42:27.342] Elapsed:: 0.03229999542236328ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 1:: 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 398 [10:42:27.342] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 399 [10:42:27.342] Elapsed:: 0.006099998950958252ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 1:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 400 [10:42:27.342] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2:: 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 401 [10:42:27.342] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 402 [10:42:27.342] Elapsed:: 0.03280001878738403ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2:: 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 403 [10:42:27.342] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 404 [10:42:27.342] Elapsed:: 0.0037000179290771484ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2:: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json 2000 undefined Project: /dev/null/autoImportProviderProject1* WatchType: File location affecting resolution
Info 405 [10:42:27.342] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/node/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 406 [10:42:27.342] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json 1:: 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 407 [10:42:27.342] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 408 [10:42:27.342] Elapsed:: 0.036400020122528076ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json 1:: 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 409 [10:42:27.342] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json 2:: 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 410 [10:42:27.342] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 411 [10:42:27.342] Elapsed:: 0.03249996900558472ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json 2:: 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 412 [10:42:27.342] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/semver/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 413 [10:42:27.343] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json 1:: 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 414 [10:42:27.343] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 415 [10:42:27.343] Elapsed:: 0.03040003776550293ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json 1:: 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 416 [10:42:27.343] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json 2:: 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 417 [10:42:27.343] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 418 [10:42:27.343] Elapsed:: 0.0340999960899353ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json 2:: 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 419 [10:42:27.343] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 420 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 421 [10:42:27.366] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp
Info 422 [10:42:27.366] Elapsed:: 0.10289996862411499ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 423 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 424 [10:42:27.366] Elapsed:: 0.05010002851486206ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 425 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 426 [10:42:27.366] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 427 [10:42:27.366] Elapsed:: 0.05440002679824829ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 428 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 429 [10:42:27.366] Elapsed:: 0.013199985027313232ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp/regexpp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 430 [10:42:27.366] sysLog:: /home/jabaile/work/pprof-it/node_modules/@eslint-community/regexpp:: Changing watcher to MissingFileSystemEntryWatcher
Info 431 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 432 [10:42:27.366] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14
Info 433 [10:42:27.366] Elapsed:: 0.05169999599456787ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 434 [10:42:27.366] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 435 [10:42:27.367] Elapsed:: 0.0626000165939331ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 436 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 437 [10:42:27.367] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 438 [10:42:27.367] Elapsed:: 0.0382000207901001ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 439 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 440 [10:42:27.367] Elapsed:: 0.010799944400787354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14/node14 :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 441 [10:42:27.367] sysLog:: /home/jabaile/work/pprof-it/node_modules/@tsconfig/node14:: Changing watcher to MissingFileSystemEntryWatcher
Info 442 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 443 [10:42:27.367] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child
Info 444 [10:42:27.367] Elapsed:: 0.11920005083084106ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 445 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 446 [10:42:27.367] Elapsed:: 0.03100001811981201ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 447 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 448 [10:42:27.367] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 449 [10:42:27.367] Elapsed:: 0.03240001201629639ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 450 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 451 [10:42:27.367] Elapsed:: 0.012099981307983398ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 452 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 453 [10:42:27.367] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 454 [10:42:27.367] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 455 [10:42:27.367] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 456 [10:42:27.367] Elapsed:: 0.2134000062942505ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/foreground-child/foreground-child :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 457 [10:42:27.367] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/foreground-child:: Changing watcher to MissingFileSystemEntryWatcher
Info 458 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 459 [10:42:27.367] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc
Info 460 [10:42:27.367] Elapsed:: 0.05460000038146973ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 461 [10:42:27.367] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /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:42:27.368] Elapsed:: 0.02740001678466797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 463 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 464 [10:42:27.368] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 465 [10:42:27.368] Elapsed:: 0.02950000762939453ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 466 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 467 [10:42:27.368] Elapsed:: 0.010199964046478271ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc/linux-x64-glibc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 468 [10:42:27.368] sysLog:: /home/jabaile/work/pprof-it/node_modules/@dprint/linux-x64-glibc:: Changing watcher to MissingFileSystemEntryWatcher
Info 469 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 470 [10:42:27.368] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit
Info 471 [10:42:27.368] Elapsed:: 0.04819995164871216ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 472 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 473 [10:42:27.368] Elapsed:: 0.028400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 474 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: 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:42:27.368] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 476 [10:42:27.368] Elapsed:: 0.029399991035461426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 477 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 478 [10:42:27.368] Elapsed:: 0.010200023651123047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 479 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 480 [10:42:27.368] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 481 [10:42:27.368] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 482 [10:42:27.368] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 483 [10:42:27.368] Elapsed:: 0.07940000295639038ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/signal-exit/signal-exit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 484 [10:42:27.368] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/signal-exit:: Changing watcher to MissingFileSystemEntryWatcher
Info 485 [10:42:27.368] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 486 [10:42:27.369] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types
Info 487 [10:42:27.369] Elapsed:: 0.5486000180244446ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 488 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/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 489 [10:42:27.369] Elapsed:: 0.03880000114440918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/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 490 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 491 [10:42:27.369] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 492 [10:42:27.369] Elapsed:: 0.039200007915496826ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: 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:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 494 [10:42:27.369] Elapsed:: 0.01130002737045288ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 495 [10:42:27.369] sysLog:: /home/jabaile/work/pprof-it/node_modules/ansi-colors/types:: Changing watcher to MissingFileSystemEntryWatcher
Info 496 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 497 [10:42:27.369] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/types/types
Info 498 [10:42:27.369] Elapsed:: 0.11320000886917114ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 499 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/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 500 [10:42:27.369] Elapsed:: 0.03329998254776001ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/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 501 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 502 [10:42:27.369] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 503 [10:42:27.369] Elapsed:: 0.0317000150680542ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: 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:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 505 [10:42:27.369] Elapsed:: 0.011699974536895752ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 506 [10:42:27.369] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/types:: Changing watcher to MissingFileSystemEntryWatcher
Info 507 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 508 [10:42:27.369] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib/lib
Info 509 [10:42:27.369] Elapsed:: 0.047599971294403076ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 510 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/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 511 [10:42:27.369] Elapsed:: 0.029600024223327637ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/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 512 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/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 513 [10:42:27.369] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 514 [10:42:27.369] Elapsed:: 0.030000030994415283ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/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 515 [10:42:27.369] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 516 [10:42:27.370] Elapsed:: 0.010800004005432129ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 517 [10:42:27.370] sysLog:: /home/jabaile/work/pprof-it/node_modules/clean-regexp/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 518 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 519 [10:42:27.370] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/debug/src/src
Info 520 [10:42:27.370] Elapsed:: 0.04629999399185181ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 521 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /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:42:27.370] Elapsed:: 0.02920001745223999ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /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:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: 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:42:27.370] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 525 [10:42:27.370] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: 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:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 527 [10:42:27.370] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 528 [10:42:27.370] sysLog:: /home/jabaile/work/pprof-it/node_modules/debug/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 529 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 530 [10:42:27.370] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin
Info 531 [10:42:27.370] Elapsed:: 0.042799949645996094ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 532 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /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:42:27.370] Elapsed:: 0.02890002727508545ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 534 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 535 [10:42:27.370] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 536 [10:42:27.370] Elapsed:: 0.02820003032684326ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 537 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 538 [10:42:27.370] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 539 [10:42:27.370] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 540 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 541 [10:42:27.370] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf
Info 542 [10:42:27.370] Elapsed:: 0.04180002212524414ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 543 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 544 [10:42:27.370] Elapsed:: 0.029399991035461426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 545 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: 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:42:27.370] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 547 [10:42:27.370] Elapsed:: 0.03029996156692505ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 548 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 549 [10:42:27.370] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 550 [10:42:27.370] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/conf:: Changing watcher to MissingFileSystemEntryWatcher
Info 551 [10:42:27.370] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 552 [10:42:27.371] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages
Info 553 [10:42:27.371] Elapsed:: 0.04129999876022339ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 554 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 555 [10:42:27.371] Elapsed:: 0.028600037097930908ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 556 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 557 [10:42:27.371] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 558 [10:42:27.371] Elapsed:: 0.028299987316131592ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 559 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 560 [10:42:27.371] Elapsed:: 0.010800004005432129ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/messages/messages :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 561 [10:42:27.371] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/messages:: Changing watcher to MissingFileSystemEntryWatcher
Info 562 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 563 [10:42:27.371] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs
Info 564 [10:42:27.371] Elapsed:: 0.041700005531311035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 565 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 566 [10:42:27.371] Elapsed:: 0.02820003032684326ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 567 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 568 [10:42:27.371] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 569 [10:42:27.371] Elapsed:: 0.02809995412826538ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 570 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 571 [10:42:27.371] Elapsed:: 0.01109999418258667ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs/configs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 572 [10:42:27.371] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint-plugin-unicorn/configs:: Changing watcher to MissingFileSystemEntryWatcher
Info 573 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 574 [10:42:27.371] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/esquery/dist/dist
Info 575 [10:42:27.371] Elapsed:: 0.04259997606277466ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 576 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/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 577 [10:42:27.371] Elapsed:: 0.03530001640319824ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/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 578 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/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 579 [10:42:27.371] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 580 [10:42:27.371] Elapsed:: 0.028399944305419922ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/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 581 [10:42:27.371] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 582 [10:42:27.371] Elapsed:: 0.010700047016143799ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/esquery/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 583 [10:42:27.371] sysLog:: /home/jabaile/work/pprof-it/node_modules/esquery/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 584 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 585 [10:42:27.373] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/graphemer/lib/lib
Info 586 [10:42:27.373] Elapsed:: 0.04569995403289795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 587 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/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 588 [10:42:27.373] Elapsed:: 0.03250002861022949ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/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 589 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/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 590 [10:42:27.373] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 591 [10:42:27.373] Elapsed:: 0.049799978733062744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/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 592 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 593 [10:42:27.373] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 594 [10:42:27.373] sysLog:: /home/jabaile/work/pprof-it/node_modules/graphemer/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 595 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 596 [10:42:27.373] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin
Info 597 [10:42:27.373] Elapsed:: 0.043299973011016846ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 598 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 599 [10:42:27.373] Elapsed:: 0.031099975109100342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 600 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 601 [10:42:27.373] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 602 [10:42:27.373] Elapsed:: 0.037600040435791016ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 603 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 604 [10:42:27.373] Elapsed:: 0.013000011444091797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 605 [10:42:27.373] sysLog:: /home/jabaile/work/pprof-it/node_modules/jsesc/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 606 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 607 [10:42:27.373] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/jsesc/man/man
Info 608 [10:42:27.373] Elapsed:: 0.045499980449676514ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 609 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 610 [10:42:27.373] Elapsed:: 0.030099987983703613ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 611 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 612 [10:42:27.373] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 613 [10:42:27.373] Elapsed:: 0.02899998426437378ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 614 [10:42:27.373] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 615 [10:42:27.373] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/man/man :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 616 [10:42:27.373] sysLog:: /home/jabaile/work/pprof-it/node_modules/jsesc/man:: Changing watcher to MissingFileSystemEntryWatcher
Info 617 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 618 [10:42:27.374] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/outdent/lib/lib
Info 619 [10:42:27.374] Elapsed:: 0.046000003814697266ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 620 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/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 621 [10:42:27.374] Elapsed:: 0.03029996156692505ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/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 622 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/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 623 [10:42:27.374] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 624 [10:42:27.374] Elapsed:: 0.029799997806549072ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/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 625 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 626 [10:42:27.374] Elapsed:: 0.0098000168800354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 627 [10:42:27.374] sysLog:: /home/jabaile/work/pprof-it/node_modules/outdent/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 628 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 629 [10:42:27.374] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module
Info 630 [10:42:27.374] Elapsed:: 0.04629999399185181ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 631 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /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:42:27.374] Elapsed:: 0.028400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /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:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: 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:42:27.374] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 635 [10:42:27.374] Elapsed:: 0.030099987983703613ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: 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:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 637 [10:42:27.374] Elapsed:: 0.011200010776519775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/lib-module/lib-module :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 638 [10:42:27.374] sysLog:: /home/jabaile/work/pprof-it/node_modules/outdent/lib-module:: Changing watcher to MissingFileSystemEntryWatcher
Info 639 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 640 [10:42:27.374] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/outdent/src/src
Info 641 [10:42:27.374] Elapsed:: 0.04159998893737793ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 642 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /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:42:27.374] Elapsed:: 0.07029998302459717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 644 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: 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:42:27.374] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 646 [10:42:27.374] Elapsed:: 0.03270000219345093ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 647 [10:42:27.374] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 648 [10:42:27.374] Elapsed:: 0.012000024318695068ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 649 [10:42:27.374] sysLog:: /home/jabaile/work/pprof-it/node_modules/outdent/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 650 [10:42:27.375] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 651 [10:42:27.375] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/dist
Info 652 [10:42:27.375] Elapsed:: 0.044700026512145996ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 653 [10:42:27.375] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/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 654 [10:42:27.375] Elapsed:: 0.06379997730255127ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/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 655 [10:42:27.375] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/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 656 [10:42:27.375] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 657 [10:42:27.375] Elapsed:: 0.03600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/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 658 [10:42:27.375] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 659 [10:42:27.375] Elapsed:: 0.013900041580200195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/pprof-format/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 660 [10:42:27.375] sysLog:: /home/jabaile/work/pprof-it/node_modules/pprof-format/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 661 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 662 [10:42:27.376] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin
Info 663 [10:42:27.376] Elapsed:: 0.04559999704360962ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 664 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 665 [10:42:27.376] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 666 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 667 [10:42:27.376] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 668 [10:42:27.376] Elapsed:: 0.03049999475479126ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 669 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 670 [10:42:27.376] Elapsed:: 0.011699974536895752ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 671 [10:42:27.376] sysLog:: /home/jabaile/work/pprof-it/node_modules/regexp-tree/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 672 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 673 [10:42:27.376] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin
Info 674 [10:42:27.376] Elapsed:: 0.042699992656707764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 675 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 676 [10:42:27.376] Elapsed:: 0.018099963665008545ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 677 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 678 [10:42:27.376] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 679 [10:42:27.376] Elapsed:: 0.028499960899353027ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 680 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 681 [10:42:27.376] Elapsed:: 0.011600017547607422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/regjsparser/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 682 [10:42:27.376] sysLog:: /home/jabaile/work/pprof-it/node_modules/regjsparser/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 683 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 684 [10:42:27.376] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/semver/bin/bin
Info 685 [10:42:27.376] Elapsed:: 0.04249995946884155ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 686 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 687 [10:42:27.376] Elapsed:: 0.01919996738433838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 688 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 689 [10:42:27.376] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 690 [10:42:27.376] Elapsed:: 0.02869999408721924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 691 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 692 [10:42:27.376] Elapsed:: 0.010200023651123047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 693 [10:42:27.376] sysLog:: /home/jabaile/work/pprof-it/node_modules/semver/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 694 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 695 [10:42:27.376] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/semver/classes/classes
Info 696 [10:42:27.376] Elapsed:: 0.046900033950805664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 697 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 698 [10:42:27.376] Elapsed:: 0.018500030040740967ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 699 [10:42:27.376] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 700 [10:42:27.377] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 701 [10:42:27.377] Elapsed:: 0.03040003776550293ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 702 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 703 [10:42:27.377] Elapsed:: 0.012000024318695068ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 704 [10:42:27.377] sysLog:: /home/jabaile/work/pprof-it/node_modules/semver/classes:: Changing watcher to MissingFileSystemEntryWatcher
Info 705 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 706 [10:42:27.377] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/semver/functions/functions
Info 707 [10:42:27.377] Elapsed:: 0.04089999198913574ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 708 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 709 [10:42:27.377] Elapsed:: 0.018200039863586426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 710 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 711 [10:42:27.377] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 712 [10:42:27.377] Elapsed:: 0.03049999475479126ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 713 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 714 [10:42:27.377] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/functions/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 715 [10:42:27.377] sysLog:: /home/jabaile/work/pprof-it/node_modules/semver/functions:: Changing watcher to MissingFileSystemEntryWatcher
Info 716 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 717 [10:42:27.377] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/semver/internal/internal
Info 718 [10:42:27.377] Elapsed:: 0.041999995708465576ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 719 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 720 [10:42:27.377] Elapsed:: 0.018700003623962402ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 721 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 722 [10:42:27.377] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 723 [10:42:27.377] Elapsed:: 0.028899967670440674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: 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:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 725 [10:42:27.377] Elapsed:: 0.010900020599365234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/internal/internal :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 726 [10:42:27.377] sysLog:: /home/jabaile/work/pprof-it/node_modules/semver/internal:: Changing watcher to MissingFileSystemEntryWatcher
Info 727 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 728 [10:42:27.377] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges
Info 729 [10:42:27.377] Elapsed:: 0.041400015354156494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 730 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 731 [10:42:27.377] Elapsed:: 0.01910001039505005ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /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:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 733 [10:42:27.377] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 734 [10:42:27.377] Elapsed:: 0.02649998664855957ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 735 [10:42:27.377] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 736 [10:42:27.378] Elapsed:: 0.40299999713897705ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/semver/ranges/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 737 [10:42:27.378] sysLog:: /home/jabaile/work/pprof-it/node_modules/semver/ranges:: Changing watcher to MissingFileSystemEntryWatcher
Info 738 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 739 [10:42:27.378] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/source-map/dist/dist
Info 740 [10:42:27.378] Elapsed:: 0.04629999399185181ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 741 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 742 [10:42:27.378] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 743 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 744 [10:42:27.378] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 745 [10:42:27.378] Elapsed:: 0.030699968338012695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 746 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 747 [10:42:27.378] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 748 [10:42:27.378] sysLog:: /home/jabaile/work/pprof-it/node_modules/source-map/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 749 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 750 [10:42:27.378] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/source-map/lib/lib
Info 751 [10:42:27.378] Elapsed:: 0.04109996557235718ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 752 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 753 [10:42:27.378] Elapsed:: 0.018999993801116943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 754 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 755 [10:42:27.378] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 756 [10:42:27.378] Elapsed:: 0.028400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/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 757 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 758 [10:42:27.378] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 759 [10:42:27.378] sysLog:: /home/jabaile/work/pprof-it/node_modules/source-map/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 760 [10:42:27.378] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 761 [10:42:27.379] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib/lib
Info 762 [10:42:27.379] Elapsed:: 0.04280000925064087ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 763 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/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 764 [10:42:27.379] Elapsed:: 0.01919996738433838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/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 765 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/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 766 [10:42:27.379] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 767 [10:42:27.379] Elapsed:: 0.02879995107650757ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/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 768 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 769 [10:42:27.379] Elapsed:: 0.010699987411499023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 770 [10:42:27.379] sysLog:: /home/jabaile/work/pprof-it/node_modules/ts-api-utils/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 771 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 772 [10:42:27.379] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters
Info 773 [10:42:27.379] Elapsed:: 0.042699992656707764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 774 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 775 [10:42:27.379] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 776 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: 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:42:27.379] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 778 [10:42:27.379] Elapsed:: 0.026899993419647217ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 779 [10:42:27.379] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 780 [10:42:27.379] Elapsed:: 0.01100003719329834ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/adapters/adapters :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 781 [10:42:27.379] sysLog:: /home/jabaile/work/pprof-it/node_modules/tty-table/adapters:: Changing watcher to MissingFileSystemEntryWatcher
Info 782 [10:42:27.380] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 783 [10:42:27.380] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/src/src
Info 784 [10:42:27.380] Elapsed:: 0.04589998722076416ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 785 [10:42:27.380] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 786 [10:42:27.380] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 787 [10:42:27.380] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 788 [10:42:27.380] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 789 [10:42:27.380] Elapsed:: 0.03040003776550293ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 790 [10:42:27.380] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 791 [10:42:27.380] Elapsed:: 0.012800037860870361ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 792 [10:42:27.381] sysLog:: /home/jabaile/work/pprof-it/node_modules/tty-table/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 793 [10:42:27.381] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 794 [10:42:27.381] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin
Info 795 [10:42:27.381] Elapsed:: 0.043200016021728516ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 796 [10:42:27.381] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 797 [10:42:27.381] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 798 [10:42:27.381] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 799 [10:42:27.381] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 800 [10:42:27.381] Elapsed:: 0.033499956130981445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 801 [10:42:27.381] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 802 [10:42:27.381] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/bin/bin :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 803 [10:42:27.381] sysLog:: /home/jabaile/work/pprof-it/node_modules/typescript/bin:: Changing watcher to MissingFileSystemEntryWatcher
Info 804 [10:42:27.392] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 805 [10:42:27.392] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig
Info 806 [10:42:27.392] Elapsed:: 0.08059996366500854ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 807 [10:42:27.392] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 808 [10:42:27.392] Elapsed:: 0.03459995985031128ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 809 [10:42:27.392] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 810 [10:42:27.392] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 811 [10:42:27.392] Elapsed:: 0.04500001668930054ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 812 [10:42:27.392] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 813 [10:42:27.392] Elapsed:: 0.013400018215179443ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@tsconfig/@tsconfig :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 814 [10:42:27.393] sysLog:: /home/jabaile/work/pprof-it/node_modules/@tsconfig:: Changing watcher to MissingFileSystemEntryWatcher
Info 815 [10:42:27.393] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 816 [10:42:27.393] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint
Info 817 [10:42:27.393] Elapsed:: 0.050300002098083496ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 818 [10:42:27.393] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 819 [10:42:27.393] Elapsed:: 0.029100000858306885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 820 [10:42:27.393] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 821 [10:42:27.393] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 822 [10:42:27.393] Elapsed:: 0.03250002861022949ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 823 [10:42:27.393] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 824 [10:42:27.393] Elapsed:: 0.011200010776519775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@dprint/@dprint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 825 [10:42:27.393] sysLog:: /home/jabaile/work/pprof-it/node_modules/@dprint:: Changing watcher to MissingFileSystemEntryWatcher
Info 826 [10:42:27.399] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 827 [10:42:27.399] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors
Info 828 [10:42:27.399] Elapsed:: 0.05299997329711914ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 829 [10:42:27.399] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 830 [10:42:27.399] Elapsed:: 0.02599996328353882ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 831 [10:42:27.399] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 832 [10:42:27.399] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 833 [10:42:27.399] Elapsed:: 0.034900009632110596ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 834 [10:42:27.399] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 835 [10:42:27.399] Elapsed:: 0.013200044631958008ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ansi-colors/ansi-colors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 836 [10:42:27.399] sysLog:: /home/jabaile/work/pprof-it/node_modules/ansi-colors:: Changing watcher to MissingFileSystemEntryWatcher
Info 837 [10:42:27.432] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 838 [10:42:27.433] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer
Info 839 [10:42:27.433] Elapsed:: 0.0867999792098999ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 840 [10:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 841 [10:42:27.433] Elapsed:: 0.04439997673034668ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 842 [10:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 843 [10:42:27.433] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 844 [10:42:27.433] Elapsed:: 0.05210000276565552ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: 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:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 846 [10:42:27.433] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/graphemer/graphemer :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 847 [10:42:27.433] sysLog:: /home/jabaile/work/pprof-it/node_modules/graphemer:: Changing watcher to MissingFileSystemEntryWatcher
Info 848 [10:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 849 [10:42:27.433] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc
Info 850 [10:42:27.433] Elapsed:: 0.04510003328323364ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 851 [10:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 852 [10:42:27.433] Elapsed:: 0.029600024223327637ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /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:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 854 [10:42:27.433] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 855 [10:42:27.433] Elapsed:: 0.030600011348724365ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 856 [10:42:27.433] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 857 [10:42:27.433] Elapsed:: 0.011700034141540527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/jsesc/jsesc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 858 [10:42:27.433] sysLog:: /home/jabaile/work/pprof-it/node_modules/jsesc:: Changing watcher to MissingFileSystemEntryWatcher
Info 859 [10:42:27.437] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 860 [10:42:27.438] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/outdent/outdent
Info 861 [10:42:27.438] Elapsed:: 0.058600008487701416ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 862 [10:42:27.438] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /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:42:27.438] Elapsed:: 0.030900001525878906ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /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:42:27.438] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: 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:42:27.438] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 866 [10:42:27.438] Elapsed:: 0.03759998083114624ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: 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:42:27.438] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 868 [10:42:27.438] Elapsed:: 0.013199985027313232ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/outdent/outdent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 869 [10:42:27.438] sysLog:: /home/jabaile/work/pprof-it/node_modules/outdent:: Changing watcher to MissingFileSystemEntryWatcher
Info 870 [10:42:27.453] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 871 [10:42:27.453] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/source-map/source-map
Info 872 [10:42:27.453] Elapsed:: 0.09210002422332764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 873 [10:42:27.453] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-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 874 [10:42:27.453] Elapsed:: 0.045400023460388184ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-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 875 [10:42:27.453] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 876 [10:42:27.453] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 877 [10:42:27.453] Elapsed:: 0.05470001697540283ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 878 [10:42:27.453] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 879 [10:42:27.453] Elapsed:: 0.014800012111663818ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/source-map/source-map :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 880 [10:42:27.453] sysLog:: /home/jabaile/work/pprof-it/node_modules/source-map:: Changing watcher to MissingFileSystemEntryWatcher
Info 881 [10:42:27.454] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 882 [10:42:27.454] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils
Info 883 [10:42:27.454] Elapsed:: 0.0526999831199646ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 884 [10:42:27.454] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 885 [10:42:27.454] Elapsed:: 0.03700000047683716ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 886 [10:42:27.454] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: 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:42:27.454] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 888 [10:42:27.454] Elapsed:: 0.03289997577667236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 889 [10:42:27.454] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 890 [10:42:27.454] Elapsed:: 0.012199997901916504ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/ts-api-utils/ts-api-utils :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 891 [10:42:27.454] sysLog:: /home/jabaile/work/pprof-it/node_modules/ts-api-utils:: Changing watcher to MissingFileSystemEntryWatcher
Info 892 [10:42:27.518] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json 1:: 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 893 [10:42:27.518] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 894 [10:42:27.518] Elapsed:: 0.036499977111816406ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json 1:: 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 895 [10:42:27.518] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json 2:: 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 896 [10:42:27.518] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 897 [10:42:27.518] Elapsed:: 0.022599995136260986ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json 2:: 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 898 [10:42:27.518] sysLog:: /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/cjs/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 899 [10:42:27.518] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json 1:: 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 900 [10:42:27.519] Elapsed:: 0.006300032138824463ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json 1:: 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 901 [10:42:27.519] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json 2:: 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 902 [10:42:27.519] Elapsed:: 0.002400040626525879ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json 2:: 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 903 [10:42:27.519] sysLog:: /home/jabaile/work/pprof-it/node_modules/foreground-child/dist/mjs/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 904 [10:42:27.524] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 1:: 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 905 [10:42:27.524] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 906 [10:42:27.524] Elapsed:: 0.026600003242492676ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 1:: 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 907 [10:42:27.524] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 1:: 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 908 [10:42:27.524] Elapsed:: 0.0040000081062316895ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 1:: 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 909 [10:42:27.524] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2:: 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 910 [10:42:27.524] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 911 [10:42:27.524] Elapsed:: 0.01969999074935913ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2:: 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 912 [10:42:27.524] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2:: 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 913 [10:42:27.524] Elapsed:: 0.0017000436782836914ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json 2:: 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 914 [10:42:27.524] sysLog:: /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/cjs/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 915 [10:42:27.525] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json 1:: 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 916 [10:42:27.525] Elapsed:: 0.0042999982833862305ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json 1:: 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 917 [10:42:27.525] FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json 2:: 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 918 [10:42:27.525] Elapsed:: 0.001900017261505127ms FileWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json 2:: 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 919 [10:42:27.525] sysLog:: /home/jabaile/work/pprof-it/node_modules/signal-exit/dist/mjs/package.json:: Changing watcher to MissingFileSystemEntryWatcher
Info 920 [10:42:27.528] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 921 [10:42:27.529] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.d.ts
Info 922 [10:42:27.529] Elapsed:: 0.22420001029968262ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 923 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 924 [10:42:27.529] Elapsed:: 0.007200002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 925 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 926 [10:42:27.529] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 927 [10:42:27.529] Elapsed:: 0.03880000114440918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 928 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 929 [10:42:27.529] Elapsed:: 0.012400031089782715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 930 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.js
Info 932 [10:42:27.529] Elapsed:: 0.0878000259399414ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] Elapsed:: 0.0042999982833862305ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 937 [10:42:27.529] Elapsed:: 0.027300000190734863ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 939 [10:42:27.529] Elapsed:: 0.010200023651123047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 940 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 941 [10:42:27.529] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license
Info 942 [10:42:27.529] Elapsed:: 0.040299952030181885ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 943 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 944 [10:42:27.529] Elapsed:: 0.030099987983703613ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 945 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: 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:42:27.529] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 947 [10:42:27.529] Elapsed:: 0.02340000867843628ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: 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:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 949 [10:42:27.529] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 950 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 951 [10:42:27.529] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/package.json
Info 952 [10:42:27.529] Elapsed:: 0.026800036430358887ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 953 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 954 [10:42:27.529] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 955 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 956 [10:42:27.529] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 957 [10:42:27.529] Elapsed:: 0.025899946689605713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 958 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 959 [10:42:27.529] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 960 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 961 [10:42:27.529] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/readme.md
Info 962 [10:42:27.529] Elapsed:: 0.02049994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 963 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 964 [10:42:27.529] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 965 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 966 [10:42:27.529] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 967 [10:42:27.529] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/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 968 [10:42:27.529] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 969 [10:42:27.529] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/is-fullwidth-code-point/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 970 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 971 [10:42:27.530] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE
Info 972 [10:42:27.530] Elapsed:: 0.03739994764328003ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 973 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 974 [10:42:27.530] Elapsed:: 0.025599956512451172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 975 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: 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:42:27.530] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 977 [10:42:27.530] Elapsed:: 0.03420001268386841ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: 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:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 979 [10:42:27.530] Elapsed:: 0.010699987411499023ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 980 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 981 [10:42:27.530] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/README.md
Info 982 [10:42:27.530] Elapsed:: 0.028100013732910156ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 983 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 984 [10:42:27.530] Elapsed:: 0.0028000473976135254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 985 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 986 [10:42:27.530] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 987 [10:42:27.530] Elapsed:: 0.022700011730194092ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 988 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 989 [10:42:27.530] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 990 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 991 [10:42:27.530] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/index.js
Info 992 [10:42:27.530] Elapsed:: 0.11580002307891846ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 993 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 994 [10:42:27.530] Elapsed:: 0.0040999650955200195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 995 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 996 [10:42:27.530] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 997 [10:42:27.530] Elapsed:: 0.025799989700317383ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 998 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 999 [10:42:27.530] Elapsed:: 0.00850003957748413ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1000 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1001 [10:42:27.530] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/package.json
Info 1002 [10:42:27.530] Elapsed:: 0.026099979877471924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1003 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 1004 [10:42:27.530] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 1005 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 1006 [10:42:27.530] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1007 [10:42:27.530] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/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 1008 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1009 [10:42:27.530] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/isarray/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1010 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1011 [10:42:27.530] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.d.ts
Info 1012 [10:42:27.530] Elapsed:: 0.040100038051605225ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1013 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1014 [10:42:27.530] Elapsed:: 0.0034999847412109375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1015 [10:42:27.530] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1016 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1017 [10:42:27.531] Elapsed:: 0.02770000696182251ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1018 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1019 [10:42:27.531] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1020 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1021 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js
Info 1022 [10:42:27.531] Elapsed:: 0.020200014114379883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1023 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1024 [10:42:27.531] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1025 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1026 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1027 [10:42:27.531] Elapsed:: 0.019800007343292236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1028 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1029 [10:42:27.531] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1030 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1031 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs
Info 1032 [10:42:27.531] Elapsed:: 0.01919996738433838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1033 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1034 [10:42:27.531] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.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 1035 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1036 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1037 [10:42:27.531] Elapsed:: 0.01940000057220459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1038 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1039 [10:42:27.531] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/colors.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1040 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1041 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.d.ts
Info 1042 [10:42:27.531] Elapsed:: 0.03700000047683716ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1043 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1044 [10:42:27.531] Elapsed:: 0.0031000375747680664ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1045 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1046 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1047 [10:42:27.531] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1048 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1049 [10:42:27.531] Elapsed:: 0.008299946784973145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1050 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1051 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.js
Info 1052 [10:42:27.531] Elapsed:: 0.024299979209899902ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1053 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1054 [10:42:27.531] Elapsed:: 0.0054000020027160645ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1055 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1056 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1057 [10:42:27.531] Elapsed:: 0.02950000762939453ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1058 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1059 [10:42:27.531] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1060 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1061 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.mjs
Info 1062 [10:42:27.531] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1063 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1064 [10:42:27.531] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1065 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1066 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1067 [10:42:27.531] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1068 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1069 [10:42:27.531] Elapsed:: 0.014899969100952148ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/index.mjs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1070 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1071 [10:42:27.531] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license
Info 1072 [10:42:27.531] Elapsed:: 0.03970003128051758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1073 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1074 [10:42:27.531] Elapsed:: 0.018799960613250732ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1075 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1076 [10:42:27.531] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1077 [10:42:27.531] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1078 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1079 [10:42:27.531] Elapsed:: 0.009900033473968506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1080 [10:42:27.531] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1081 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/package.json
Info 1082 [10:42:27.532] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1083 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1084 [10:42:27.532] Elapsed:: 0.003699958324432373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1085 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1086 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1087 [10:42:27.532] Elapsed:: 0.019899964332580566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1088 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1089 [10:42:27.532] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1090 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1091 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/readme.md
Info 1092 [10:42:27.532] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1093 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1094 [10:42:27.532] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1095 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1096 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1097 [10:42:27.532] Elapsed:: 0.02030003070831299ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/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 1098 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1099 [10:42:27.532] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/kleur/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1100 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1101 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.d.ts
Info 1102 [10:42:27.532] Elapsed:: 0.040400028228759766ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1103 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1104 [10:42:27.532] Elapsed:: 0.004400014877319336ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1105 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1106 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1107 [10:42:27.532] Elapsed:: 0.02180004119873047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1108 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1109 [10:42:27.532] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1110 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1111 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.js
Info 1112 [10:42:27.532] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1113 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1114 [10:42:27.532] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1115 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1116 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1117 [10:42:27.532] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1118 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1119 [10:42:27.532] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1120 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1121 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license
Info 1122 [10:42:27.532] Elapsed:: 0.03420001268386841ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1123 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1124 [10:42:27.532] Elapsed:: 0.01530003547668457ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1125 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1126 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1127 [10:42:27.532] Elapsed:: 0.02679997682571411ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: 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:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1129 [10:42:27.532] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1130 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1131 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/package.json
Info 1132 [10:42:27.532] Elapsed:: 0.027300000190734863ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1133 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1134 [10:42:27.532] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1135 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1136 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1137 [10:42:27.532] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1138 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1139 [10:42:27.532] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1140 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1141 [10:42:27.532] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/readme.md
Info 1142 [10:42:27.532] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1143 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1144 [10:42:27.532] Elapsed:: 0.003399968147277832ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1145 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1146 [10:42:27.532] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1147 [10:42:27.532] Elapsed:: 0.0209999680519104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/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 1148 [10:42:27.532] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1149 [10:42:27.532] Elapsed:: 0.007499992847442627ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/locate-path/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1150 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1151 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.d.ts
Info 1152 [10:42:27.533] Elapsed:: 0.041900038719177246ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1153 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1154 [10:42:27.533] Elapsed:: 0.0034999847412109375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1155 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1156 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1157 [10:42:27.533] Elapsed:: 0.02340000867843628ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1158 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1159 [10:42:27.533] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1160 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1161 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.js
Info 1162 [10:42:27.533] Elapsed:: 0.022500038146972656ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1163 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1164 [10:42:27.533] Elapsed:: 0.0034999847412109375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1165 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1166 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1167 [10:42:27.533] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1168 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1169 [10:42:27.533] Elapsed:: 0.007999956607818604ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1170 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1171 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license
Info 1172 [10:42:27.533] Elapsed:: 0.03470003604888916ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1173 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1174 [10:42:27.533] Elapsed:: 0.015900015830993652ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1175 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1176 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1177 [10:42:27.533] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1178 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1179 [10:42:27.533] Elapsed:: 0.009900033473968506ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1180 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1181 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/package.json
Info 1182 [10:42:27.533] Elapsed:: 0.02490001916885376ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1183 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1184 [10:42:27.533] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1185 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1186 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1187 [10:42:27.533] Elapsed:: 0.021399974822998047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1188 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1189 [10:42:27.533] Elapsed:: 0.00850003957748413ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1190 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1191 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.d.ts
Info 1192 [10:42:27.533] Elapsed:: 0.04999995231628418ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1193 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1194 [10:42:27.533] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1195 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1196 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1197 [10:42:27.533] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1198 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1199 [10:42:27.533] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1200 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1201 [10:42:27.533] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/readme.md
Info 1202 [10:42:27.533] Elapsed:: 0.024200022220611572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1203 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1204 [10:42:27.533] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1205 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1206 [10:42:27.533] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1207 [10:42:27.533] Elapsed:: 0.021400034427642822ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/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 1208 [10:42:27.533] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1209 [10:42:27.533] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/p-locate/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1210 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1211 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.js
Info 1212 [10:42:27.534] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1213 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1214 [10:42:27.534] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1215 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1216 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1217 [10:42:27.534] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1218 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1219 [10:42:27.534] Elapsed:: 0.009400010108947754ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1220 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1221 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license
Info 1222 [10:42:27.534] Elapsed:: 0.034900009632110596ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1223 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1224 [10:42:27.534] Elapsed:: 0.016200006008148193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1225 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1226 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1227 [10:42:27.534] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1228 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1229 [10:42:27.534] Elapsed:: 0.00839996337890625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1230 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1231 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/package.json
Info 1232 [10:42:27.534] Elapsed:: 0.023899972438812256ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1233 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1234 [10:42:27.534] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1235 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1236 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1237 [10:42:27.534] Elapsed:: 0.03049999475479126ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1238 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1239 [10:42:27.534] Elapsed:: 0.010299980640411377ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1240 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1241 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/readme.md
Info 1242 [10:42:27.534] Elapsed:: 0.025300025939941406ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1243 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1244 [10:42:27.534] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1245 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1246 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1247 [10:42:27.534] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/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 1248 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1249 [10:42:27.534] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/path-exists/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1250 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1251 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc
Info 1252 [10:42:27.534] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1253 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1254 [10:42:27.534] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1255 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1256 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1257 [10:42:27.534] Elapsed:: 0.022399961948394775ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1258 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1259 [10:42:27.534] Elapsed:: 0.0098000168800354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.jshintrc :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1260 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1261 [10:42:27.534] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore
Info 1262 [10:42:27.534] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1263 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1264 [10:42:27.534] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1265 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1266 [10:42:27.534] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1267 [10:42:27.534] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1268 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1269 [10:42:27.534] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.npmignore :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1270 [10:42:27.534] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1271 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.travis.yml
Info 1272 [10:42:27.535] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1273 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1274 [10:42:27.535] Elapsed:: 0.0034999847412109375ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1275 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1276 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1277 [10:42:27.535] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.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 1278 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1279 [10:42:27.535] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/.travis.yml :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1280 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1281 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE
Info 1282 [10:42:27.535] Elapsed:: 0.036400020122528076ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1283 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1284 [10:42:27.535] Elapsed:: 0.015500009059906006ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1285 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1286 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1287 [10:42:27.535] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1288 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1289 [10:42:27.535] Elapsed:: 0.009399950504302979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1290 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/README.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1291 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/README.markdown
Info 1292 [10:42:27.535] Elapsed:: 0.019200026988983154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/README.markdown :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1293 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1294 [10:42:27.535] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1295 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1296 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1297 [10:42:27.535] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1298 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/README.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1299 [10:42:27.535] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/README.markdown :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1300 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1301 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/index.js
Info 1302 [10:42:27.535] Elapsed:: 0.019599974155426025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1303 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1304 [10:42:27.535] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1305 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1306 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1307 [10:42:27.535] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1308 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1309 [10:42:27.535] Elapsed:: 0.014199972152709961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1310 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1311 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/CHANGELOG.md
Info 1312 [10:42:27.535] Elapsed:: 0.021700024604797363ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1313 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1314 [10:42:27.535] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1315 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1316 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1317 [10:42:27.535] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1318 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1319 [10:42:27.535] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1320 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1321 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/package.json
Info 1322 [10:42:27.535] Elapsed:: 0.02330005168914795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1323 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1324 [10:42:27.535] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1325 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1326 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1327 [10:42:27.535] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/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 1328 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1329 [10:42:27.535] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-directory/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1330 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1331 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/LICENSE.txt
Info 1332 [10:42:27.535] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1333 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1334 [10:42:27.535] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1335 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1336 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1337 [10:42:27.535] Elapsed:: 0.020400047302246094ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1338 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1339 [10:42:27.535] Elapsed:: 0.010199964046478271ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1340 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1341 [10:42:27.535] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/README.md
Info 1342 [10:42:27.535] Elapsed:: 0.018999993801116943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1343 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1344 [10:42:27.535] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1345 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1346 [10:42:27.535] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1347 [10:42:27.535] Elapsed:: 0.02129995822906494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1348 [10:42:27.535] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1349 [10:42:27.536] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1350 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1351 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/index.js
Info 1352 [10:42:27.536] Elapsed:: 0.01840001344680786ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1353 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1354 [10:42:27.536] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1355 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1356 [10:42:27.536] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1357 [10:42:27.536] Elapsed:: 0.021599948406219482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1358 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1359 [10:42:27.536] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1360 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1361 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/package.json
Info 1362 [10:42:27.536] Elapsed:: 0.027000010013580322ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1363 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1364 [10:42:27.536] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1365 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1366 [10:42:27.536] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1367 [10:42:27.536] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/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 1368 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1369 [10:42:27.536] Elapsed:: 0.00839996337890625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/require-main-filename/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1370 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1371 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/CHANGELOG.md
Info 1372 [10:42:27.536] Elapsed:: 0.018099963665008545ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1373 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1374 [10:42:27.536] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1375 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1376 [10:42:27.536] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1377 [10:42:27.536] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1378 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1379 [10:42:27.536] Elapsed:: 0.00850003957748413ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/CHANGELOG.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1380 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1381 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/LICENSE.txt
Info 1382 [10:42:27.536] Elapsed:: 0.019899964332580566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1383 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1384 [10:42:27.536] Elapsed:: 0.002599954605102539ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1385 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1386 [10:42:27.536] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1387 [10:42:27.536] Elapsed:: 0.020400047302246094ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1388 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1389 [10:42:27.536] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/LICENSE.txt :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1390 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1391 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/README.md
Info 1392 [10:42:27.536] Elapsed:: 0.01799994707107544ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1393 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1394 [10:42:27.536] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1395 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1396 [10:42:27.536] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1397 [10:42:27.536] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1398 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1399 [10:42:27.536] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1400 [10:42:27.536] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1401 [10:42:27.536] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/index.js
Info 1402 [10:42:27.536] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1403 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1404 [10:42:27.537] Elapsed:: 0.0073999762535095215ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1405 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1406 [10:42:27.537] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1407 [10:42:27.537] Elapsed:: 0.030000030994415283ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1408 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1409 [10:42:27.537] Elapsed:: 0.009399950504302979ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1410 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1411 [10:42:27.537] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/package.json
Info 1412 [10:42:27.537] Elapsed:: 0.027899980545043945ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1413 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1414 [10:42:27.537] Elapsed:: 0.00270003080368042ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1415 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1416 [10:42:27.537] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1417 [10:42:27.537] Elapsed:: 0.02090001106262207ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/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 1418 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1419 [10:42:27.537] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/set-blocking/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1420 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1421 [10:42:27.537] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.d.ts
Info 1422 [10:42:27.537] Elapsed:: 0.043200016021728516ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1423 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1424 [10:42:27.537] Elapsed:: 0.0035999417304992676ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1425 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1426 [10:42:27.537] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1427 [10:42:27.537] Elapsed:: 0.023599982261657715ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1428 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1429 [10:42:27.537] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.d.ts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1430 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1431 [10:42:27.537] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.js
Info 1432 [10:42:27.537] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1433 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1434 [10:42:27.537] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1435 [10:42:27.537] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1436 [10:42:27.537] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1437 [10:42:27.537] Elapsed:: 0.020299971103668213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1438 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1439 [10:42:27.538] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1440 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1441 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license
Info 1442 [10:42:27.538] Elapsed:: 0.03259998559951782ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1443 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1444 [10:42:27.538] Elapsed:: 0.01680004596710205ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1445 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1446 [10:42:27.538] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1447 [10:42:27.538] Elapsed:: 0.02129995822906494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1448 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1449 [10:42:27.538] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1450 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1451 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/package.json
Info 1452 [10:42:27.538] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1453 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1454 [10:42:27.538] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1455 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1456 [10:42:27.538] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1457 [10:42:27.538] Elapsed:: 0.018900036811828613ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1458 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1459 [10:42:27.538] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1460 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1461 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/readme.md
Info 1462 [10:42:27.538] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1463 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1464 [10:42:27.538] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1465 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1466 [10:42:27.538] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1467 [10:42:27.538] Elapsed:: 0.01930004358291626ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/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 1468 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1469 [10:42:27.538] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/string-width/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1470 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1471 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/index.d.ts
Info 1472 [10:42:27.538] Elapsed:: 0.042600035667419434ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1473 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1474 [10:42:27.538] Elapsed:: 0.003600001335144043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1475 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1476 [10:42:27.538] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1477 [10:42:27.538] Elapsed:: 0.02340000867843628ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1478 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1479 [10:42:27.538] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1480 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1481 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/index.js
Info 1482 [10:42:27.538] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1483 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1484 [10:42:27.538] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1485 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1486 [10:42:27.538] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1487 [10:42:27.538] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1488 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1489 [10:42:27.538] Elapsed:: 0.008499979972839355ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1490 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1491 [10:42:27.538] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/license
Info 1492 [10:42:27.538] Elapsed:: 0.032199978828430176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1493 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1494 [10:42:27.538] Elapsed:: 0.01639997959136963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1495 [10:42:27.538] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1496 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1497 [10:42:27.539] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1498 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1499 [10:42:27.539] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1500 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1501 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/package.json
Info 1502 [10:42:27.539] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1503 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1504 [10:42:27.539] Elapsed:: 0.0026999711990356445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1505 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1506 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1507 [10:42:27.539] Elapsed:: 0.01900005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1508 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1509 [10:42:27.539] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1510 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1511 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js
Info 1512 [10:42:27.539] Elapsed:: 0.018200039863586426ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1513 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.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 1514 [10:42:27.539] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.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 1515 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1516 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1517 [10:42:27.539] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1518 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1519 [10:42:27.539] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/browser.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1520 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1521 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/strip-ansi/readme.md
Info 1522 [10:42:27.539] Elapsed:: 0.017799973487854004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1523 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1524 [10:42:27.539] Elapsed:: 0.0023000240325927734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1525 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1526 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1527 [10:42:27.539] Elapsed:: 0.018700003623962402ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1528 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1529 [10:42:27.539] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/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 1530 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1531 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/index.js
Info 1532 [10:42:27.539] Elapsed:: 0.01750004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1533 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1534 [10:42:27.539] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1535 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1536 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1537 [10:42:27.539] Elapsed:: 0.018599987030029297ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1538 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1539 [10:42:27.539] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1540 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1541 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license
Info 1542 [10:42:27.539] Elapsed:: 0.03220003843307495ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1543 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1544 [10:42:27.539] Elapsed:: 0.023299992084503174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1545 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1546 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1547 [10:42:27.539] Elapsed:: 0.02490001916885376ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1548 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1549 [10:42:27.539] Elapsed:: 0.009300053119659424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1550 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1551 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/package.json
Info 1552 [10:42:27.539] Elapsed:: 0.024399995803833008ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1553 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1554 [10:42:27.539] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1555 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1556 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1557 [10:42:27.539] Elapsed:: 0.01919996738433838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1558 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1559 [10:42:27.539] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1560 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1561 [10:42:27.539] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/readme.md
Info 1562 [10:42:27.539] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1563 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1564 [10:42:27.539] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1565 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1566 [10:42:27.539] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1567 [10:42:27.539] Elapsed:: 0.018999993801116943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/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 1568 [10:42:27.539] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1569 [10:42:27.539] Elapsed:: 0.0076999664306640625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/supports-color/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1570 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1571 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE
Info 1572 [10:42:27.540] Elapsed:: 0.034900009632110596ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1573 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1574 [10:42:27.540] Elapsed:: 0.014199972152709961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1575 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1576 [10:42:27.540] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1577 [10:42:27.540] Elapsed:: 0.02319997549057007ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1578 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1579 [10:42:27.540] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/LICENSE :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1580 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1581 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/README.md
Info 1582 [10:42:27.540] Elapsed:: 0.0196000337600708ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/README.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1583 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1584 [10:42:27.540] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1585 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1586 [10:42:27.540] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1587 [10:42:27.540] Elapsed:: 0.019299983978271484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1588 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1589 [10:42:27.540] Elapsed:: 0.007999956607818604ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/README.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1590 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1591 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/index.js
Info 1592 [10:42:27.540] Elapsed:: 0.01910001039505005ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1593 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1594 [10:42:27.540] Elapsed:: 0.0023000240325927734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1595 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1596 [10:42:27.540] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1597 [10:42:27.540] Elapsed:: 0.019299983978271484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1598 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1599 [10:42:27.540] Elapsed:: 0.007600009441375732ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1600 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1601 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/package.json
Info 1602 [10:42:27.540] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1603 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1604 [10:42:27.540] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1605 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1606 [10:42:27.540] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1607 [10:42:27.540] Elapsed:: 0.018800020217895508ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/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 1608 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1609 [10:42:27.540] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/which-module/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1610 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1611 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/index.js
Info 1612 [10:42:27.540] Elapsed:: 0.01940000057220459ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1613 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1614 [10:42:27.540] Elapsed:: 0.002200007438659668ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1615 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1616 [10:42:27.540] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1617 [10:42:27.540] Elapsed:: 0.08950001001358032ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1618 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1619 [10:42:27.540] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/index.js :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1620 [10:42:27.540] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1621 [10:42:27.540] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/license
Info 1622 [10:42:27.541] Elapsed:: 0.037300050258636475ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1623 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1624 [10:42:27.541] Elapsed:: 0.014999985694885254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1625 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1626 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1627 [10:42:27.541] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1628 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1629 [10:42:27.541] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/license :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1630 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1631 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/package.json
Info 1632 [10:42:27.541] Elapsed:: 0.023299992084503174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1633 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1634 [10:42:27.541] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1635 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1636 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1637 [10:42:27.541] Elapsed:: 0.01900005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1638 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1639 [10:42:27.541] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/package.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1640 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1641 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/readme.md
Info 1642 [10:42:27.541] Elapsed:: 0.01819998025894165ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1643 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1644 [10:42:27.541] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1645 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1646 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1647 [10:42:27.541] Elapsed:: 0.018299996852874756ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-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 1648 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1649 [10:42:27.541] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/wrap-ansi/readme.md :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1650 [10:42:27.541] sysLog:: /home/jabaile/work/pprof-it/node_modules/tty-table/node_modules/yargs:: Changing watcher to PresentFileSystemEntryWatcher
Info 1651 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1652 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json
Info 1653 [10:42:27.541] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1654 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.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 1655 [10:42:27.541] Elapsed:: 0.00279998779296875ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.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 1656 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1657 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1658 [10:42:27.541] Elapsed:: 0.026000022888183594ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1659 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1660 [10:42:27.541] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/cs/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1661 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1662 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json
Info 1663 [10:42:27.541] Elapsed:: 0.023800015449523926ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1664 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.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 1665 [10:42:27.541] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.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 1666 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1667 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1668 [10:42:27.541] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1669 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1670 [10:42:27.541] Elapsed:: 0.009499967098236084ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/de/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1671 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1672 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json
Info 1673 [10:42:27.541] Elapsed:: 0.01799994707107544ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1674 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.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 1675 [10:42:27.541] Elapsed:: 0.0023000240325927734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.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 1676 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1677 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1678 [10:42:27.541] Elapsed:: 0.022899985313415527ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1679 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1680 [10:42:27.541] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/es/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1681 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1682 [10:42:27.541] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json
Info 1683 [10:42:27.541] Elapsed:: 0.019200026988983154ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1684 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.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 1685 [10:42:27.541] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.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 1686 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1687 [10:42:27.541] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1688 [10:42:27.541] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1689 [10:42:27.541] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1690 [10:42:27.541] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/fr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1691 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1692 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json
Info 1693 [10:42:27.542] Elapsed:: 0.018800020217895508ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1694 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.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 1695 [10:42:27.542] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.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 1696 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1697 [10:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1698 [10:42:27.542] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1699 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1700 [10:42:27.542] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/it/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1701 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1702 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json
Info 1703 [10:42:27.542] Elapsed:: 0.019999980926513672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1704 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.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 1705 [10:42:27.542] Elapsed:: 0.0023999810218811035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.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 1706 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1707 [10:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1708 [10:42:27.542] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1709 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1710 [10:42:27.542] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ja/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1711 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1712 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json
Info 1713 [10:42:27.542] Elapsed:: 0.019500017166137695ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1714 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.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 1715 [10:42:27.542] Elapsed:: 0.002400040626525879ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.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 1716 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1717 [10:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1718 [10:42:27.542] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1719 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1720 [10:42:27.542] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ko/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1721 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1722 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json
Info 1723 [10:42:27.542] Elapsed:: 0.017799973487854004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1724 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.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 1725 [10:42:27.542] Elapsed:: 0.002400040626525879ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.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 1726 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: 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:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1728 [10:42:27.542] Elapsed:: 0.02030003070831299ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1729 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1730 [10:42:27.542] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pl/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1731 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1732 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json
Info 1733 [10:42:27.542] Elapsed:: 0.018899977207183838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1734 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.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 1735 [10:42:27.542] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.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 1736 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: 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:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1738 [10:42:27.542] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1739 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1740 [10:42:27.542] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1741 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1742 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json
Info 1743 [10:42:27.542] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1744 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.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 1745 [10:42:27.542] Elapsed:: 0.0023000240325927734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.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 1746 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.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:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1748 [10:42:27.542] Elapsed:: 0.023200035095214844ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1749 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1750 [10:42:27.542] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/ru/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1751 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1752 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json
Info 1753 [10:42:27.542] Elapsed:: 0.019800007343292236ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1754 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.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 1755 [10:42:27.542] Elapsed:: 0.002299964427947998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.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 1756 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: 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:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1758 [10:42:27.542] Elapsed:: 0.021799981594085693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1759 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1760 [10:42:27.542] Elapsed:: 0.009300053119659424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/tr/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1761 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1762 [10:42:27.542] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json
Info 1763 [10:42:27.542] Elapsed:: 0.020099997520446777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1764 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.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 1765 [10:42:27.542] Elapsed:: 0.0034000277519226074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.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 1766 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: 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:42:27.542] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1768 [10:42:27.542] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1769 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1770 [10:42:27.542] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1771 [10:42:27.542] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1772 [10:42:27.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json
Info 1773 [10:42:27.543] Elapsed:: 0.017300009727478027ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1774 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.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 1775 [10:42:27.543] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.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 1776 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: 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:42:27.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1778 [10:42:27.543] Elapsed:: 0.020700037479400635ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1779 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1780 [10:42:27.543] Elapsed:: 0.007800042629241943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1781 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1782 [10:42:27.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src
Info 1783 [10:42:27.543] Elapsed:: 0.03880000114440918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1784 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /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:42:27.543] Elapsed:: 0.016099989414215088ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1786 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1787 [10:42:27.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1788 [10:42:27.543] Elapsed:: 0.022799968719482422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1789 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1790 [10:42:27.543] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1791 [10:42:27.543] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/assemble-release-plan/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1792 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1793 [10:42:27.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files
Info 1794 [10:42:27.543] Elapsed:: 0.04460000991821289ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1795 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1796 [10:42:27.543] Elapsed:: 0.016200006008148193ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1797 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: 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:42:27.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1799 [10:42:27.543] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1800 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1801 [10:42:27.543] Elapsed:: 0.009200036525726318ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files/default-files :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1802 [10:42:27.543] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/cli/default-files:: Changing watcher to MissingFileSystemEntryWatcher
Info 1803 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1804 [10:42:27.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src
Info 1805 [10:42:27.543] Elapsed:: 0.042699992656707764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1806 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1807 [10:42:27.543] Elapsed:: 0.01639997959136963ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1808 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1809 [10:42:27.543] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1810 [10:42:27.543] Elapsed:: 0.02319997549057007ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1811 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1812 [10:42:27.543] Elapsed:: 0.010100007057189941ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1813 [10:42:27.543] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/changelog-git/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1814 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1815 [10:42:27.543] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src
Info 1816 [10:42:27.543] Elapsed:: 0.041700005531311035ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1817 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1818 [10:42:27.543] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1819 [10:42:27.543] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1820 [10:42:27.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1821 [10:42:27.544] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1822 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1823 [10:42:27.544] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1824 [10:42:27.544] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/errors/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1825 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1826 [10:42:27.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src
Info 1827 [10:42:27.544] Elapsed:: 0.04259997606277466ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1828 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1829 [10:42:27.544] Elapsed:: 0.015900015830993652ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1830 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1831 [10:42:27.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1832 [10:42:27.544] Elapsed:: 0.02510005235671997ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1833 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1834 [10:42:27.544] Elapsed:: 0.010299980640411377ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1835 [10:42:27.544] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/get-dependents-graph/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1836 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1837 [10:42:27.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src
Info 1838 [10:42:27.544] Elapsed:: 0.046000003814697266ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1839 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1840 [10:42:27.544] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1841 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1842 [10:42:27.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1843 [10:42:27.544] Elapsed:: 0.02599996328353882ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1844 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1845 [10:42:27.544] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1846 [10:42:27.544] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/get-release-plan/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1847 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1848 [10:42:27.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src
Info 1849 [10:42:27.544] Elapsed:: 0.04030001163482666ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1850 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1851 [10:42:27.544] Elapsed:: 0.01780003309249878ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1852 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1853 [10:42:27.544] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1854 [10:42:27.544] Elapsed:: 0.03229999542236328ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1855 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1856 [10:42:27.544] Elapsed:: 0.011399984359741211ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/git/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1857 [10:42:27.544] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/git/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1858 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1859 [10:42:27.544] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src
Info 1860 [10:42:27.544] Elapsed:: 0.04220002889633179ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1861 [10:42:27.544] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1862 [10:42:27.544] Elapsed:: 0.017400026321411133ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1863 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1864 [10:42:27.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1865 [10:42:27.545] Elapsed:: 0.02490001916885376ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1866 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1867 [10:42:27.545] Elapsed:: 0.0098000168800354ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1868 [10:42:27.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/logger/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1869 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1870 [10:42:27.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src
Info 1871 [10:42:27.545] Elapsed:: 0.04280000925064087ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1872 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1873 [10:42:27.545] Elapsed:: 0.017499983310699463ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1874 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1875 [10:42:27.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1876 [10:42:27.545] Elapsed:: 0.031099975109100342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: 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:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1878 [10:42:27.545] Elapsed:: 0.013000011444091797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1879 [10:42:27.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/pre/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1880 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1881 [10:42:27.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src
Info 1882 [10:42:27.545] Elapsed:: 0.0415000319480896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1883 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1884 [10:42:27.545] Elapsed:: 0.017700016498565674ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /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:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1886 [10:42:27.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1887 [10:42:27.545] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1888 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1889 [10:42:27.545] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/read/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1890 [10:42:27.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/read/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1891 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1892 [10:42:27.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src
Info 1893 [10:42:27.545] Elapsed:: 0.04219996929168701ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1894 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /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:42:27.545] Elapsed:: 0.01799994707107544ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /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:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: 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:42:27.545] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1898 [10:42:27.545] Elapsed:: 0.024100005626678467ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: 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:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1900 [10:42:27.545] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/types/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1901 [10:42:27.545] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/types/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1902 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1903 [10:42:27.545] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src
Info 1904 [10:42:27.545] Elapsed:: 0.042699992656707764ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1905 [10:42:27.545] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /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:42:27.546] Elapsed:: 0.017499983310699463ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1907 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1908 [10:42:27.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1909 [10:42:27.546] Elapsed:: 0.024299979209899902ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1910 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1911 [10:42:27.546] Elapsed:: 0.00839996337890625ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@changesets/write/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1912 [10:42:27.546] sysLog:: /home/jabaile/work/pprof-it/node_modules/@changesets/write/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1913 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1914 [10:42:27.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib/lib
Info 1915 [10:42:27.546] Elapsed:: 0.04270005226135254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1916 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1917 [10:42:27.546] Elapsed:: 0.01660001277923584ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1918 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1919 [10:42:27.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1920 [10:42:27.546] Elapsed:: 0.02629995346069336ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1921 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1922 [10:42:27.546] Elapsed:: 0.009199976921081543ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1923 [10:42:27.546] sysLog:: /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib:: Changing watcher to MissingFileSystemEntryWatcher
Info 1924 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1925 [10:42:27.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator
Info 1926 [10:42:27.546] Elapsed:: 0.04270005226135254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1927 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1928 [10:42:27.546] Elapsed:: 0.014800012111663818ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1929 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: 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:42:27.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1931 [10:42:27.546] Elapsed:: 0.024299979209899902ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1932 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1933 [10:42:27.546] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator/regenerator :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1934 [10:42:27.546] sysLog:: /home/jabaile/work/pprof-it/node_modules/@babel/runtime/regenerator:: Changing watcher to MissingFileSystemEntryWatcher
Info 1935 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1936 [10:42:27.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib
Info 1937 [10:42:27.546] Elapsed:: 0.04070001840591431ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1938 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1939 [10:42:27.546] Elapsed:: 0.01699995994567871ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/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 1940 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1941 [10:42:27.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1942 [10:42:27.546] Elapsed:: 0.02260005474090576ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1943 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1944 [10:42:27.546] Elapsed:: 0.00989997386932373ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/lib :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1945 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1946 [10:42:27.546] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf
Info 1947 [10:42:27.546] Elapsed:: 0.03909999132156372ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1948 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1949 [10:42:27.546] Elapsed:: 0.01789999008178711ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1950 [10:42:27.546] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1951 [10:42:27.546] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1952 [10:42:27.547] Elapsed:: 0.024100005626678467ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1953 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1954 [10:42:27.547] Elapsed:: 0.017799973487854004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf/conf :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1955 [10:42:27.547] sysLog:: /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/conf:: Changing watcher to MissingFileSystemEntryWatcher
Info 1956 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1957 [10:42:27.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts
Info 1958 [10:42:27.547] Elapsed:: 0.04890000820159912ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1959 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1960 [10:42:27.547] Elapsed:: 0.016099989414215088ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1961 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1962 [10:42:27.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1963 [10:42:27.547] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1964 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1965 [10:42:27.547] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@babel/helper-validator-identifier/scripts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1966 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1967 [10:42:27.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist/dist
Info 1968 [10:42:27.547] Elapsed:: 0.03470003604888916ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1969 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/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 1970 [10:42:27.547] Elapsed:: 0.016499996185302734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/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 1971 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/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 1972 [10:42:27.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1973 [10:42:27.547] Elapsed:: 0.02310001850128174ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/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 1974 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1975 [10:42:27.547] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1976 [10:42:27.547] sysLog:: /home/jabaile/work/pprof-it/node_modules/@eslint/eslintrc/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 1977 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1978 [10:42:27.547] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src
Info 1979 [10:42:27.547] Elapsed:: 0.047599971294403076ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1980 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1981 [10:42:27.547] Elapsed:: 0.016499996185302734ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1982 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1983 [10:42:27.547] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1984 [10:42:27.547] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1985 [10:42:27.547] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1986 [10:42:27.547] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src/src :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1987 [10:42:27.548] sysLog:: /home/jabaile/work/pprof-it/node_modules/@manypkg/get-packages/src:: Changing watcher to MissingFileSystemEntryWatcher
Info 1988 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1989 [10:42:27.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert
Info 1990 [10:42:27.548] Elapsed:: 0.044700026512145996ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 1991 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1992 [10:42:27.548] Elapsed:: 0.01759999990463257ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 1993 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1994 [10:42:27.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 1995 [10:42:27.548] Elapsed:: 0.025199949741363525ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 1996 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1997 [10:42:27.548] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 1998 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 1999 [10:42:27.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2000 [10:42:27.548] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2001 [10:42:27.548] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2002 [10:42:27.548] Elapsed:: 0.07029998302459717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2003 [10:42:27.548] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/node/assert:: Changing watcher to MissingFileSystemEntryWatcher
Info 2004 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2005 [10:42:27.548] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/assert
Info 2006 [10:42:27.548] Elapsed:: 0.03909999132156372ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2007 [10:42:27.548] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /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:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2009 [10:42:27.549] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2010 [10:42:27.549] Elapsed:: 0.7307999730110168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2011 [10:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2012 [10:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2013 [10:42:27.549] Elapsed:: 0.03229999542236328ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2014 [10:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2015 [10:42:27.549] Elapsed:: 0.01130002737045288ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2016 [10:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2017 [10:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2018 [10:42:27.549] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2019 [10:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2020 [10:42:27.549] Elapsed:: 0.05320000648498535ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/assert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2021 [10:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2022 [10:42:27.549] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/dns
Info 2023 [10:42:27.549] Elapsed:: 0.03939998149871826ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2024 [10:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2025 [10:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2026 [10:42:27.549] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2027 [10:42:27.549] Elapsed:: 0.13099998235702515ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /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:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: 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:42:27.549] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2030 [10:42:27.549] Elapsed:: 0.028600037097930908ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: 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:42:27.549] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2032 [10:42:27.549] Elapsed:: 0.00959998369216919ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2033 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2034 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2035 [10:42:27.550] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2036 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2037 [10:42:27.550] Elapsed:: 0.06540000438690186ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/dns :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2038 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2039 [10:42:27.550] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/fs
Info 2040 [10:42:27.550] Elapsed:: 0.03670001029968262ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2041 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2042 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2043 [10:42:27.550] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2044 [10:42:27.550] Elapsed:: 0.10820001363754272ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2045 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2046 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2047 [10:42:27.550] Elapsed:: 0.024200022220611572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2048 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2049 [10:42:27.550] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2050 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2051 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2052 [10:42:27.550] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2053 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2054 [10:42:27.550] Elapsed:: 0.050099968910217285ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/fs :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2055 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2056 [10:42:27.550] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes
Info 2057 [10:42:27.550] Elapsed:: 0.03579998016357422ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2058 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2059 [10:42:27.550] Elapsed:: 0.026300013065338135ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2060 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: 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:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2062 [10:42:27.550] Elapsed:: 0.02039998769760132ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2063 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2064 [10:42:27.550] Elapsed:: 0.013700008392333984ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2065 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2066 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2067 [10:42:27.550] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2068 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2069 [10:42:27.550] Elapsed:: 0.053799986839294434ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2070 [10:42:27.550] sysLog:: /home/jabaile/work/pprof-it/node_modules/@types/semver/classes:: Changing watcher to MissingFileSystemEntryWatcher
Info 2071 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2072 [10:42:27.550] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/semver/classes
Info 2073 [10:42:27.550] Elapsed:: 0.040499985218048096ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2074 [10:42:27.550] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2075 [10:42:27.550] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2076 [10:42:27.550] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2077 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2078 [10:42:27.551] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2079 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2080 [10:42:27.551] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2081 [10:42:27.551] Elapsed:: 0.531000018119812ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2082 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2083 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2084 [10:42:27.551] Elapsed:: 0.03130000829696655ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2085 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2086 [10:42:27.551] Elapsed:: 0.010199964046478271ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2087 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2088 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2089 [10:42:27.551] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2090 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2091 [10:42:27.551] Elapsed:: 0.048799991607666016ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/classes :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2092 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2093 [10:42:27.551] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/readline
Info 2094 [10:42:27.551] Elapsed:: 0.03939998149871826ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2095 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2096 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2097 [10:42:27.551] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2098 [10:42:27.551] Elapsed:: 0.0997999906539917ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /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:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: 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:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2101 [10:42:27.551] Elapsed:: 0.028299987316131592ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: 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:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2103 [10:42:27.551] Elapsed:: 0.009999990463256836ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2104 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2105 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2106 [10:42:27.551] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2107 [10:42:27.551] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2108 [10:42:27.551] Elapsed:: 0.058600008487701416ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/readline :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2109 [10:42:27.551] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2110 [10:42:27.552] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/semver/functions
Info 2111 [10:42:27.552] Elapsed:: 0.03709995746612549ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2112 [10:42:27.552] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2113 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2114 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2115 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2116 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2117 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2118 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2119 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2120 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2121 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2122 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2123 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2124 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2125 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2126 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2127 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2128 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2129 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2130 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2131 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2132 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2133 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2134 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2135 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2136 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2137 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2138 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2139 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2140 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2141 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2142 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2143 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2144 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2145 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2146 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2147 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2148 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2149 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2150 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2151 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2152 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2153 [10:42:27.552] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2154 [10:42:27.552] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2155 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2156 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2157 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2158 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2159 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2160 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2161 [10:42:27.553] Elapsed:: 1.0880999565124512ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2162 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2163 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2164 [10:42:27.553] Elapsed:: 0.027300000190734863ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2165 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2166 [10:42:27.553] Elapsed:: 0.010200023651123047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2167 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2168 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2169 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2170 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2171 [10:42:27.553] Elapsed:: 0.04830002784729004ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/functions :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2172 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2173 [10:42:27.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/stream
Info 2174 [10:42:27.553] Elapsed:: 0.0382000207901001ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2175 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2176 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2177 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2178 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2179 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2180 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2181 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2182 [10:42:27.553] Elapsed:: 0.14719998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2183 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2184 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2185 [10:42:27.553] Elapsed:: 0.023000001907348633ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2186 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2187 [10:42:27.553] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2188 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2189 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2190 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2191 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2192 [10:42:27.553] Elapsed:: 0.04309999942779541ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/stream :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2193 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2194 [10:42:27.553] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/semver/internals
Info 2195 [10:42:27.553] Elapsed:: 0.036199986934661865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2196 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2197 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2198 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2199 [10:42:27.553] Elapsed:: 0.06610000133514404ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /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:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: 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:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2202 [10:42:27.553] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: 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:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2204 [10:42:27.553] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2205 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2206 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2207 [10:42:27.553] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2208 [10:42:27.553] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2209 [10:42:27.553] Elapsed:: 0.038699984550476074ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/internals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2210 [10:42:27.553] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2211 [10:42:27.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges
Info 2212 [10:42:27.554] Elapsed:: 0.03799998760223389ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2213 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2214 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2215 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2216 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2217 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2218 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2219 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2220 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2221 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2222 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2223 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2224 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2225 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2226 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2227 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2228 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2229 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2230 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2231 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2232 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2233 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2234 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2235 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2236 [10:42:27.554] Elapsed:: 0.40289998054504395ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2237 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2238 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2239 [10:42:27.554] Elapsed:: 0.027899980545043945ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2240 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2241 [10:42:27.554] Elapsed:: 0.010300040245056152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2242 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2243 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2244 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2245 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2246 [10:42:27.554] Elapsed:: 0.037400007247924805ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/semver/ranges :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2247 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2248 [10:42:27.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@types/node/timers
Info 2249 [10:42:27.554] Elapsed:: 0.034900009632110596ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2250 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /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:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2252 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2253 [10:42:27.554] Elapsed:: 0.07210004329681396ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2254 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2255 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2256 [10:42:27.554] Elapsed:: 0.021399974822998047ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2257 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2258 [10:42:27.554] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2259 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2260 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.json, Cancelled earlier one
Info 2261 [10:42:27.554] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one
Info 2262 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2263 [10:42:27.554] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@types/node/timers :: WatchInfo: /home/jabaile/work/pprof-it/node_modules/@types 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Type roots
Info 2264 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2265 [10:42:27.554] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist/dist
Info 2266 [10:42:27.554] Elapsed:: 0.05480003356933594ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2267 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/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 2268 [10:42:27.554] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/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 2269 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/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 2270 [10:42:27.554] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2271 [10:42:27.554] Elapsed:: 0.02129995822906494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/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 2272 [10:42:27.554] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2273 [10:42:27.554] Elapsed:: 0.010600030422210693ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2274 [10:42:27.555] sysLog:: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/parser/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 2275 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2276 [10:42:27.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist/dist
Info 2277 [10:42:27.555] Elapsed:: 0.07590001821517944ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2278 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/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 2279 [10:42:27.555] Elapsed:: 0.025599956512451172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/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 2280 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/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 2281 [10:42:27.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2282 [10:42:27.555] Elapsed:: 0.02369999885559082ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/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 2283 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2284 [10:42:27.555] Elapsed:: 0.008900046348571777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2285 [10:42:27.555] sysLog:: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/type-utils/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 2286 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2287 [10:42:27.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist/dist
Info 2288 [10:42:27.555] Elapsed:: 0.03829997777938843ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2289 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/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 2290 [10:42:27.555] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/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 2291 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/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 2292 [10:42:27.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2293 [10:42:27.555] Elapsed:: 0.021600008010864258ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/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 2294 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2295 [10:42:27.555] Elapsed:: 0.011399984359741211ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist/dist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2296 [10:42:27.555] sysLog:: /home/jabaile/work/pprof-it/node_modules/@typescript-eslint/visitor-keys/dist:: Changing watcher to MissingFileSystemEntryWatcher
Info 2297 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2298 [10:42:27.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles
Info 2299 [10:42:27.555] Elapsed:: 0.037699997425079346ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2300 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /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:42:27.555] Elapsed:: 0.02499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /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:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: 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:42:27.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2304 [10:42:27.555] Elapsed:: 0.02460002899169922ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: 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:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2306 [10:42:27.555] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2307 [10:42:27.555] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/ansi-styles:: Changing watcher to MissingFileSystemEntryWatcher
Info 2308 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2309 [10:42:27.555] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert
Info 2310 [10:42:27.555] Elapsed:: 0.037100017070770264ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2311 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /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:42:27.555] Elapsed:: 0.025000035762786865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2313 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2314 [10:42:27.555] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2315 [10:42:27.555] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2316 [10:42:27.555] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2317 [10:42:27.555] Elapsed:: 0.00820004940032959ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2318 [10:42:27.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-convert:: Changing watcher to MissingFileSystemEntryWatcher
Info 2319 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2320 [10:42:27.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name
Info 2321 [10:42:27.556] Elapsed:: 0.037199974060058594ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2322 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2323 [10:42:27.556] Elapsed:: 0.025000035762786865ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2324 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: 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:42:27.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2326 [10:42:27.556] Elapsed:: 0.02199995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2327 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2328 [10:42:27.556] Elapsed:: 0.008699953556060791ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2329 [10:42:27.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/color-name:: Changing watcher to MissingFileSystemEntryWatcher
Info 2330 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2331 [10:42:27.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp
Info 2332 [10:42:27.556] Elapsed:: 0.03700000047683716ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2333 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2334 [10:42:27.556] Elapsed:: 0.0252000093460083ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2335 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: 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:42:27.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2337 [10:42:27.556] Elapsed:: 0.022000014781951904ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2338 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2339 [10:42:27.556] Elapsed:: 0.008499979972839355ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2340 [10:42:27.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/escape-string-regexp:: Changing watcher to MissingFileSystemEntryWatcher
Info 2341 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2342 [10:42:27.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp
Info 2343 [10:42:27.556] Elapsed:: 0.03680002689361572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2344 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2345 [10:42:27.556] Elapsed:: 0.05840003490447998ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2346 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2347 [10:42:27.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2348 [10:42:27.556] Elapsed:: 0.026500046253204346ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2349 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2350 [10:42:27.556] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2351 [10:42:27.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/clean-regexp/node_modules/escape-string-regexp:: Changing watcher to MissingFileSystemEntryWatcher
Info 2352 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2353 [10:42:27.556] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag
Info 2354 [10:42:27.556] Elapsed:: 0.037100017070770264ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2355 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2356 [10:42:27.556] Elapsed:: 0.02590000629425049ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2357 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2358 [10:42:27.556] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2359 [10:42:27.556] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2360 [10:42:27.556] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2361 [10:42:27.556] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2362 [10:42:27.556] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/has-flag:: Changing watcher to MissingFileSystemEntryWatcher
Info 2363 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2364 [10:42:27.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color
Info 2365 [10:42:27.557] Elapsed:: 0.040199995040893555ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2366 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2367 [10:42:27.557] Elapsed:: 0.0265999436378479ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2368 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2369 [10:42:27.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2370 [10:42:27.557] Elapsed:: 0.02349996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2371 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2372 [10:42:27.557] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color/supports-color :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2373 [10:42:27.557] sysLog:: /home/jabaile/work/pprof-it/node_modules/chalk/node_modules/supports-color:: Changing watcher to MissingFileSystemEntryWatcher
Info 2374 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2375 [10:42:27.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist
Info 2376 [10:42:27.557] Elapsed:: 0.03679996728897095ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2377 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2378 [10:42:27.557] Elapsed:: 0.024500012397766113ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2379 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2380 [10:42:27.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2381 [10:42:27.557] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2382 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2383 [10:42:27.557] Elapsed:: 0.015899956226348877ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist/browserslist :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2384 [10:42:27.557] sysLog:: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/browserslist:: Changing watcher to MissingFileSystemEntryWatcher
Info 2385 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2386 [10:42:27.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util
Info 2387 [10:42:27.557] Elapsed:: 0.03780001401901245ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2388 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2389 [10:42:27.557] Elapsed:: 0.01690000295639038ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2390 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2391 [10:42:27.557] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2392 [10:42:27.557] Elapsed:: 0.02240002155303955ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2393 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2394 [10:42:27.557] Elapsed:: 0.008100032806396484ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util/util :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2395 [10:42:27.557] sysLog:: /home/jabaile/work/pprof-it/node_modules/cross-spawn/lib/util:: Changing watcher to MissingFileSystemEntryWatcher
Info 2396 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2397 [10:42:27.557] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/electron-to-chromium/electron-to-chromium
Info 2398 [10:42:27.557] Elapsed:: 0.03690004348754883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2399 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2400 [10:42:27.557] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2401 [10:42:27.557] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2402 [10:42:27.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2403 [10:42:27.558] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2404 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2405 [10:42:27.558] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/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 2406 [10:42:27.558] sysLog:: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/electron-to-chromium:: Changing watcher to MissingFileSystemEntryWatcher
Info 2407 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2408 [10:42:27.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors
Info 2409 [10:42:27.558] Elapsed:: 0.036100029945373535ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2410 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2411 [10:42:27.558] Elapsed:: 0.014500021934509277ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2412 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2413 [10:42:27.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2414 [10:42:27.558] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: 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:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2416 [10:42:27.558] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors/picocolors :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2417 [10:42:27.558] sysLog:: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/picocolors:: Changing watcher to MissingFileSystemEntryWatcher
Info 2418 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2419 [10:42:27.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key
Info 2420 [10:42:27.558] Elapsed:: 0.038999974727630615ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2421 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2422 [10:42:27.558] Elapsed:: 0.014500021934509277ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /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:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2424 [10:42:27.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2425 [10:42:27.558] Elapsed:: 0.021500051021575928ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2426 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2427 [10:42:27.558] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key/path-key :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2428 [10:42:27.558] sysLog:: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/path-key:: Changing watcher to MissingFileSystemEntryWatcher
Info 2429 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2430 [10:42:27.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db
Info 2431 [10:42:27.558] Elapsed:: 0.038999974727630615ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2432 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /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:42:27.558] Elapsed:: 0.014099955558776855ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /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:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: 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:42:27.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2436 [10:42:27.558] Elapsed:: 0.021700024604797363ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: 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:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2438 [10:42:27.558] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db/update-browserslist-db :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2439 [10:42:27.558] sysLog:: /home/jabaile/work/pprof-it/node_modules/core-js-compat/node_modules/update-browserslist-db:: Changing watcher to MissingFileSystemEntryWatcher
Info 2440 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2441 [10:42:27.558] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command
Info 2442 [10:42:27.558] Elapsed:: 0.03880000114440918ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2443 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /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:42:27.558] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2445 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2446 [10:42:27.558] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2447 [10:42:27.558] Elapsed:: 0.022699952125549316ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2448 [10:42:27.558] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2449 [10:42:27.558] Elapsed:: 0.009099960327148438ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command/shebang-command :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2450 [10:42:27.558] sysLog:: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-command:: Changing watcher to MissingFileSystemEntryWatcher
Info 2451 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2452 [10:42:27.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms
Info 2453 [10:42:27.559] Elapsed:: 0.12319999933242798ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2454 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2455 [10:42:27.559] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2456 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: 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:42:27.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2458 [10:42:27.559] Elapsed:: 0.03400003910064697ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2459 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2460 [10:42:27.559] Elapsed:: 0.010399997234344482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms/ms :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2461 [10:42:27.559] sysLog:: /home/jabaile/work/pprof-it/node_modules/debug/node_modules/ms:: Changing watcher to MissingFileSystemEntryWatcher
Info 2462 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2463 [10:42:27.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts
Info 2464 [10:42:27.559] Elapsed:: 0.03799998760223389ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2465 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2466 [10:42:27.559] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2467 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2468 [10:42:27.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2469 [10:42:27.559] Elapsed:: 0.02249997854232788ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2470 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2471 [10:42:27.559] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts/prompts :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2472 [10:42:27.559] sysLog:: /home/jabaile/work/pprof-it/node_modules/enquirer/lib/prompts:: Changing watcher to MissingFileSystemEntryWatcher
Info 2473 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2474 [10:42:27.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex
Info 2475 [10:42:27.559] Elapsed:: 0.03609997034072876ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2476 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-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 2477 [10:42:27.559] Elapsed:: 0.014600038528442383ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-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 2478 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2479 [10:42:27.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2480 [10:42:27.559] Elapsed:: 0.022900044918060303ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2481 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2482 [10:42:27.559] Elapsed:: 0.008499979972839355ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex/shebang-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2483 [10:42:27.559] sysLog:: /home/jabaile/work/pprof-it/node_modules/cross-spawn/node_modules/shebang-regex:: Changing watcher to MissingFileSystemEntryWatcher
Info 2484 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2485 [10:42:27.559] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex
Info 2486 [10:42:27.559] Elapsed:: 0.03689998388290405ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2487 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-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 2488 [10:42:27.559] Elapsed:: 0.014199972152709961ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-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 2489 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2490 [10:42:27.559] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2491 [10:42:27.559] Elapsed:: 0.02390003204345703ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2492 [10:42:27.559] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2493 [10:42:27.559] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2494 [10:42:27.559] sysLog:: /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/ansi-regex:: Changing watcher to MissingFileSystemEntryWatcher
Info 2495 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2496 [10:42:27.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types
Info 2497 [10:42:27.560] Elapsed:: 0.03549998998641968ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2498 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/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 2499 [10:42:27.560] Elapsed:: 0.015600025653839111ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/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 2500 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2501 [10:42:27.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2502 [10:42:27.560] Elapsed:: 0.02090001106262207ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2503 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2504 [10:42:27.560] Elapsed:: 0.008899986743927002ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types/types :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2505 [10:42:27.560] sysLog:: /home/jabaile/work/pprof-it/node_modules/enquirer/lib/types:: Changing watcher to MissingFileSystemEntryWatcher
Info 2506 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2507 [10:42:27.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/strip-ansi/strip-ansi
Info 2508 [10:42:27.560] Elapsed:: 0.042600035667419434ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2509 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2510 [10:42:27.560] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2511 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2512 [10:42:27.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2513 [10:42:27.560] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2514 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2515 [10:42:27.560] Elapsed:: 0.007799983024597168ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/enquirer/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 2516 [10:42:27.560] sysLog:: /home/jabaile/work/pprof-it/node_modules/enquirer/node_modules/strip-ansi:: Changing watcher to MissingFileSystemEntryWatcher
Info 2517 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/config/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2518 [10:42:27.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/lib/config/config
Info 2519 [10:42:27.560] Elapsed:: 0.035800039768218994ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/config/config :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2520 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/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 2521 [10:42:27.560] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/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 2522 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/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 2523 [10:42:27.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2524 [10:42:27.560] Elapsed:: 0.021599948406219482ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/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 2525 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2526 [10:42:27.560] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/config/config :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2527 [10:42:27.560] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/lib/config:: Changing watcher to MissingFileSystemEntryWatcher
Info 2528 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2529 [10:42:27.560] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint
Info 2530 [10:42:27.560] Elapsed:: 0.03560000658035278ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2531 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2532 [10:42:27.560] Elapsed:: 0.016199946403503418ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2533 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2534 [10:42:27.560] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2535 [10:42:27.560] Elapsed:: 0.02490001916885376ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: 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:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2537 [10:42:27.560] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint/eslint :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2538 [10:42:27.560] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/lib/eslint:: Changing watcher to MissingFileSystemEntryWatcher
Info 2539 [10:42:27.560] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2540 [10:42:27.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester
Info 2541 [10:42:27.561] Elapsed:: 0.07580000162124634ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2542 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2543 [10:42:27.561] Elapsed:: 0.015200018882751465ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /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:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2545 [10:42:27.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2546 [10:42:27.561] Elapsed:: 0.02210003137588501ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2547 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2548 [10:42:27.561] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester/rule-tester :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2549 [10:42:27.561] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/lib/rule-tester:: Changing watcher to MissingFileSystemEntryWatcher
Info 2550 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2551 [10:42:27.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared
Info 2552 [10:42:27.561] Elapsed:: 0.03690004348754883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2553 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /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:42:27.561] Elapsed:: 0.016000032424926758ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /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:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: 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:42:27.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2557 [10:42:27.561] Elapsed:: 0.021699965000152588ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: 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:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2559 [10:42:27.561] Elapsed:: 0.03750002384185791ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared/shared :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2560 [10:42:27.561] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/lib/shared:: Changing watcher to MissingFileSystemEntryWatcher
Info 2561 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2562 [10:42:27.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx
Info 2563 [10:42:27.561] Elapsed:: 0.045499980449676514ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2564 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /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:42:27.561] Elapsed:: 0.01530003547668457ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2566 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2567 [10:42:27.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2568 [10:42:27.561] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2569 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2570 [10:42:27.561] Elapsed:: 0.00950002670288086ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx/acorn-jsx :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2571 [10:42:27.561] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/acorn-jsx:: Changing watcher to MissingFileSystemEntryWatcher
Info 2572 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2573 [10:42:27.561] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex
Info 2574 [10:42:27.561] Elapsed:: 0.03810000419616699ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2575 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-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 2576 [10:42:27.561] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-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 2577 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2578 [10:42:27.561] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2579 [10:42:27.561] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2580 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2581 [10:42:27.561] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex/ansi-regex :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2582 [10:42:27.561] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-regex:: Changing watcher to MissingFileSystemEntryWatcher
Info 2583 [10:42:27.561] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2584 [10:42:27.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles
Info 2585 [10:42:27.562] Elapsed:: 0.035899996757507324ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2586 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2587 [10:42:27.562] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2588 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: 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:42:27.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2590 [10:42:27.562] Elapsed:: 0.4724999666213989ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2591 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2592 [10:42:27.562] Elapsed:: 0.017300009727478027ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles/ansi-styles :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2593 [10:42:27.562] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/ansi-styles:: Changing watcher to MissingFileSystemEntryWatcher
Info 2594 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2595 [10:42:27.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion
Info 2596 [10:42:27.562] Elapsed:: 0.040499985218048096ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2597 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2598 [10:42:27.562] Elapsed:: 0.015299975872039795ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2599 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2600 [10:42:27.562] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2601 [10:42:27.562] Elapsed:: 0.0274999737739563ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2602 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2603 [10:42:27.562] Elapsed:: 0.009700000286102295ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion/brace-expansion :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2604 [10:42:27.562] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/brace-expansion:: Changing watcher to MissingFileSystemEntryWatcher
Info 2605 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2606 [10:42:27.562] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert
Info 2607 [10:42:27.562] Elapsed:: 0.03689998388290405ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2608 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2609 [10:42:27.562] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2610 [10:42:27.562] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2611 [10:42:27.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2612 [10:42:27.563] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2613 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2614 [10:42:27.563] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert/color-convert :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2615 [10:42:27.563] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-convert:: Changing watcher to MissingFileSystemEntryWatcher
Info 2616 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2617 [10:42:27.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name
Info 2618 [10:42:27.563] Elapsed:: 0.0372999906539917ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2619 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2620 [10:42:27.563] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2621 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2622 [10:42:27.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2623 [10:42:27.563] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2624 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2625 [10:42:27.563] Elapsed:: 0.007700026035308838ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name/color-name :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2626 [10:42:27.563] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/color-name:: Changing watcher to MissingFileSystemEntryWatcher
Info 2627 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2628 [10:42:27.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp
Info 2629 [10:42:27.563] Elapsed:: 0.0363999605178833ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2630 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2631 [10:42:27.563] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2632 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2633 [10:42:27.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2634 [10:42:27.563] Elapsed:: 0.022300004959106445ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2635 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2636 [10:42:27.563] Elapsed:: 0.008599996566772461ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp/escape-string-regexp :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2637 [10:42:27.563] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/escape-string-regexp:: Changing watcher to MissingFileSystemEntryWatcher
Info 2638 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2639 [10:42:27.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse
Info 2640 [10:42:27.563] Elapsed:: 0.03609997034072876ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2641 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2642 [10:42:27.563] Elapsed:: 0.018999993801116943ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2643 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2644 [10:42:27.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2645 [10:42:27.563] Elapsed:: 0.022599995136260986ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2646 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2647 [10:42:27.563] Elapsed:: 0.008900046348571777ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse/esrecurse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2648 [10:42:27.563] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/esrecurse:: Changing watcher to MissingFileSystemEntryWatcher
Info 2649 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2650 [10:42:27.563] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse
Info 2651 [10:42:27.563] Elapsed:: 0.037400007247924805ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2652 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2653 [10:42:27.563] Elapsed:: 0.014299988746643066ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2654 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2655 [10:42:27.563] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2656 [10:42:27.563] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2657 [10:42:27.563] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2658 [10:42:27.563] Elapsed:: 0.008400022983551025ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse/estraverse :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2659 [10:42:27.563] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/estraverse:: Changing watcher to MissingFileSystemEntryWatcher
Info 2660 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2661 [10:42:27.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fast-levenshtein/fast-levenshtein
Info 2662 [10:42:27.564] Elapsed:: 0.037100017070770264ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2663 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2664 [10:42:27.564] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2665 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2666 [10:42:27.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2667 [10:42:27.564] Elapsed:: 0.021499991416931152ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2668 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2669 [10:42:27.564] Elapsed:: 0.007899999618530273ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/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 2670 [10:42:27.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fast-levenshtein:: Changing watcher to MissingFileSystemEntryWatcher
Info 2671 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2672 [10:42:27.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache
Info 2673 [10:42:27.564] Elapsed:: 0.03700000047683716ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2674 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2675 [10:42:27.564] Elapsed:: 0.014500021934509277ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /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:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2677 [10:42:27.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2678 [10:42:27.564] Elapsed:: 0.0218999981880188ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2679 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2680 [10:42:27.564] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache/file-entry-cache :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2681 [10:42:27.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/file-entry-cache:: Changing watcher to MissingFileSystemEntryWatcher
Info 2682 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2683 [10:42:27.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up
Info 2684 [10:42:27.564] Elapsed:: 0.03680002689361572ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2685 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /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:42:27.564] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /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:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: 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:42:27.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2689 [10:42:27.564] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: 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:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2691 [10:42:27.564] Elapsed:: 0.008799970149993896ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up/find-up :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2692 [10:42:27.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/find-up:: Changing watcher to MissingFileSystemEntryWatcher
Info 2693 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2694 [10:42:27.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath
Info 2695 [10:42:27.564] Elapsed:: 0.024800002574920654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2696 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /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:42:27.564] Elapsed:: 0.002499997615814209ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /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:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: 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:42:27.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2700 [10:42:27.564] Elapsed:: 0.019900023937225342ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: 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:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2702 [10:42:27.564] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath/fs.realpath :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2703 [10:42:27.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/fs.realpath:: Changing watcher to MissingFileSystemEntryWatcher
Info 2704 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2705 [10:42:27.564] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob
Info 2706 [10:42:27.564] Elapsed:: 0.036100029945373535ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2707 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /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:42:27.564] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2709 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: 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:42:27.564] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2711 [10:42:27.564] Elapsed:: 0.020500004291534424ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2712 [10:42:27.564] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2713 [10:42:27.564] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob/glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2714 [10:42:27.564] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob:: Changing watcher to MissingFileSystemEntryWatcher
Info 2715 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2716 [10:42:27.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent
Info 2717 [10:42:27.565] Elapsed:: 0.04989999532699585ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2718 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2719 [10:42:27.565] Elapsed:: 0.01569998264312744ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2720 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2721 [10:42:27.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2722 [10:42:27.565] Elapsed:: 0.025499999523162842ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2723 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2724 [10:42:27.565] Elapsed:: 0.009100019931793213ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent/glob-parent :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2725 [10:42:27.565] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/glob-parent:: Changing watcher to MissingFileSystemEntryWatcher
Info 2726 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2727 [10:42:27.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals
Info 2728 [10:42:27.565] Elapsed:: 0.035999953746795654ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2729 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2730 [10:42:27.565] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2731 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2732 [10:42:27.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2733 [10:42:27.565] Elapsed:: 0.021400034427642822ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2734 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2735 [10:42:27.565] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals/globals :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2736 [10:42:27.565] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/globals:: Changing watcher to MissingFileSystemEntryWatcher
Info 2737 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2738 [10:42:27.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag
Info 2739 [10:42:27.565] Elapsed:: 0.1029999852180481ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2740 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2741 [10:42:27.565] Elapsed:: 0.015799999237060547ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2742 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2743 [10:42:27.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2744 [10:42:27.565] Elapsed:: 0.024199962615966797ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2745 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2746 [10:42:27.565] Elapsed:: 0.009299993515014648ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag/has-flag :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2747 [10:42:27.565] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/has-flag:: Changing watcher to MissingFileSystemEntryWatcher
Info 2748 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2749 [10:42:27.565] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash
Info 2750 [10:42:27.565] Elapsed:: 0.03650003671646118ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2751 [10:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2752 [10:42:27.565] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /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:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2754 [10:42:27.565] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2755 [10:42:27.565] Elapsed:: 0.022099971771240234ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: 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:42:27.565] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2757 [10:42:27.565] Elapsed:: 0.00830000638961792ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash/imurmurhash :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2758 [10:42:27.565] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/imurmurhash:: Changing watcher to MissingFileSystemEntryWatcher
Info 2759 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2760 [10:42:27.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight
Info 2761 [10:42:27.566] Elapsed:: 0.0363999605178833ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2762 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /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:42:27.566] Elapsed:: 0.014999985694885254ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2764 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2765 [10:42:27.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2766 [10:42:27.566] Elapsed:: 0.020599961280822754ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2767 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2768 [10:42:27.566] Elapsed:: 0.009000003337860107ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight/inflight :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2769 [10:42:27.566] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inflight:: Changing watcher to MissingFileSystemEntryWatcher
Info 2770 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2771 [10:42:27.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits
Info 2772 [10:42:27.566] Elapsed:: 0.03530001640319824ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2773 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2774 [10:42:27.566] Elapsed:: 0.014400005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2775 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: 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:42:27.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2777 [10:42:27.566] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2778 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2779 [10:42:27.566] Elapsed:: 0.008000016212463379ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits/inherits :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2780 [10:42:27.566] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/inherits:: Changing watcher to MissingFileSystemEntryWatcher
Info 2781 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2782 [10:42:27.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob
Info 2783 [10:42:27.566] Elapsed:: 0.03539997339248657ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2784 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2785 [10:42:27.566] Elapsed:: 0.014799952507019043ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2786 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2787 [10:42:27.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2788 [10:42:27.566] Elapsed:: 0.020799994468688965ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2789 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2790 [10:42:27.566] Elapsed:: 0.007499992847442627ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob/is-extglob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2791 [10:42:27.566] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-extglob:: Changing watcher to MissingFileSystemEntryWatcher
Info 2792 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2793 [10:42:27.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob
Info 2794 [10:42:27.566] Elapsed:: 0.038900017738342285ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2795 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2796 [10:42:27.566] Elapsed:: 0.0153999924659729ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2797 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2798 [10:42:27.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2799 [10:42:27.566] Elapsed:: 0.021300017833709717ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2800 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2801 [10:42:27.566] Elapsed:: 0.008800029754638672ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob/is-glob :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2802 [10:42:27.566] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-glob:: Changing watcher to MissingFileSystemEntryWatcher
Info 2803 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2804 [10:42:27.566] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside
Info 2805 [10:42:27.566] Elapsed:: 0.036299943923950195ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2806 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2807 [10:42:27.566] Elapsed:: 0.014400005340576172ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2808 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2809 [10:42:27.566] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2810 [10:42:27.566] Elapsed:: 0.02120000123977661ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2811 [10:42:27.566] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2812 [10:42:27.566] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside/is-path-inside :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2813 [10:42:27.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/is-path-inside:: Changing watcher to MissingFileSystemEntryWatcher
Info 2814 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2815 [10:42:27.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path
Info 2816 [10:42:27.567] Elapsed:: 0.036499977111816406ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2817 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2818 [10:42:27.567] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2819 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2820 [10:42:27.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2821 [10:42:27.567] Elapsed:: 0.02219998836517334ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2822 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2823 [10:42:27.567] Elapsed:: 0.008700013160705566ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path/locate-path :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2824 [10:42:27.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/locate-path:: Changing watcher to MissingFileSystemEntryWatcher
Info 2825 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2826 [10:42:27.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected file add/remove of non supported extension: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge
Info 2827 [10:42:27.567] Elapsed:: 0.025600016117095947ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2828 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2829 [10:42:27.567] Elapsed:: 0.0026000142097473145ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2830 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2831 [10:42:27.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2832 [10:42:27.567] Elapsed:: 0.021000027656555176ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2833 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2834 [10:42:27.567] Elapsed:: 0.008199989795684814ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge/lodash.merge :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2835 [10:42:27.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/lodash.merge:: Changing watcher to MissingFileSystemEntryWatcher
Info 2836 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2837 [10:42:27.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch
Info 2838 [10:42:27.567] Elapsed:: 0.03689998388290405ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2839 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2840 [10:42:27.567] Elapsed:: 0.014900028705596924ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2841 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2842 [10:42:27.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2843 [10:42:27.567] Elapsed:: 0.02129995822906494ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2844 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2845 [10:42:27.567] Elapsed:: 0.008699953556060791ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch/minimatch :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2846 [10:42:27.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/minimatch:: Changing watcher to MissingFileSystemEntryWatcher
Info 2847 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2848 [10:42:27.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once
Info 2849 [10:42:27.567] Elapsed:: 0.03519999980926514ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2850 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2851 [10:42:27.567] Elapsed:: 0.016100049018859863ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2852 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2853 [10:42:27.567] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2854 [10:42:27.567] Elapsed:: 0.02060002088546753ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2855 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2856 [10:42:27.567] Elapsed:: 0.007999956607818604ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once/once :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2857 [10:42:27.567] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/once:: Changing watcher to MissingFileSystemEntryWatcher
Info 2858 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2859 [10:42:27.567] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit
Info 2860 [10:42:27.567] Elapsed:: 0.03530001640319824ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2861 [10:42:27.567] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2862 [10:42:27.568] Elapsed:: 0.014699995517730713ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2863 [10:42:27.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2864 [10:42:27.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2865 [10:42:27.568] Elapsed:: 0.0209999680519104ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2866 [10:42:27.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2867 [10:42:27.568] Elapsed:: 0.008099973201751709ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit/p-limit :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /dev/null/autoImportProviderProject1* WatchType: Failed Lookup Locations
Info 2868 [10:42:27.568] sysLog:: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-limit:: Changing watcher to MissingFileSystemEntryWatcher
Info 2869 [10:42:27.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2870 [10:42:27.568] Project: /home/jabaile/work/pprof-it/tsconfig.json Detected excluded file: /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate
Info 2871 [10:42:27.568] Elapsed:: 0.03690004348754883ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate :: WatchInfo: /home/jabaile/work/pprof-it 1 undefined Config: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Wild card directory
Info 2872 [10:42:27.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2873 [10:42:27.568] Elapsed:: 0.014599978923797607ms DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache
Info 2874 [10:42:27.568] DirectoryWatcher:: Triggered with /home/jabaile/work/pprof-it/node_modules/eslint/node_modules/p-locate/p-locate :: WatchInfo: /home/jabaile/work/pprof-it/node_modules 1 undefined Project: /home/jabaile/work/pprof-it/tsconfig.json WatchType: Failed Lookup Locations
Info 2875 [10:42:27.568] Scheduled: /home/jabaile/work/pprof-it/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one
Info 2876 [10:42:27.568] Elapsed:: 0.02050
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment