From 904625ced5a11408f5d59046c03989bb929ad20f Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Wed, 1 Jun 2022 14:44:53 -0400 Subject: [PATCH] fix(profiling): Correctly validate typescript profiles (#1283) Need to check the profile key is a non empty array instead. --- CHANGELOG.md | 1 + relay-server/src/utils/profile.rs | 45 +- .../tests/fixtures/profiles/typescript.json | 10834 ++++++++++++++++ 3 files changed, 10878 insertions(+), 2 deletions(-) create mode 100644 relay-server/tests/fixtures/profiles/typescript.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 568456b4bb..59e5e76e7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Emit specific event type tags for "processing.event.produced" metric. ([#1270](https://github.com/getsentry/relay/pull/1270)) - Add support for profile outcomes. ([#1272](https://github.com/getsentry/relay/pull/1272)) - Avoid potential panics when scrubbing minidumps. ([#1282](https://github.com/getsentry/relay/pull/1282)) +- Fix typescript profile validation. ([#1283](https://github.com/getsentry/relay/pull/1283)) ## 22.5.0 diff --git a/relay-server/src/utils/profile.rs b/relay-server/src/utils/profile.rs index 65ed5f3028..63731c9ed4 100644 --- a/relay-server/src/utils/profile.rs +++ b/relay-server/src/utils/profile.rs @@ -250,10 +250,37 @@ pub fn parse_cocoa_profile(item: &mut Item) -> Result<(), ProfileError> { Ok(()) } +#[derive(Debug, Serialize, Deserialize)] +struct TypescriptProfile { + device_is_emulator: bool, + device_locale: String, + device_manufacturer: String, + device_model: String, + device_os_build_number: Option, + device_os_name: String, + device_os_version: String, + + #[serde(deserialize_with = "deserialize_number_from_string")] + duration_ns: u64, + + #[serde(default, skip_serializing_if = "String::is_empty")] + environment: String, + + platform: String, + profile_id: EventId, + profile: Vec, + trace_id: EventId, + transaction_id: EventId, + transaction_name: String, + version_code: String, + version_name: String, +} + pub fn parse_typescript_profile(item: &mut Item) -> Result<(), ProfileError> { - let profile: Vec = + let profile: TypescriptProfile = serde_json::from_slice(&item.payload()).map_err(ProfileError::InvalidJson)?; - if profile.is_empty() { + + if profile.profile.is_empty() { return Err(ProfileError::NotEnoughSamples); } @@ -299,6 +326,20 @@ mod tests { assert!(parse_android_profile(&mut item).is_ok()); } + #[test] + fn test_roundtrip_typescript() { + let mut item = Item::new(ItemType::Profile); + let payload = + Bytes::from(&include_bytes!("../../tests/fixtures/profiles/typescript.json")[..]); + item.set_payload(ContentType::Json, payload); + + assert!(parse_typescript_profile(&mut item).is_ok()); + + item.set_payload(ContentType::Json, item.payload()); + + assert!(parse_typescript_profile(&mut item).is_ok()); + } + #[test] fn test_debug_image_compatibility() { let image_json = r#"{"debug_id":"32420279-25E2-34E6-8BC7-8A006A8F2425","image_addr":"0x000000010258c000","code_file":"/private/var/containers/Bundle/Application/C3511752-DD67-4FE8-9DA2-ACE18ADFAA61/TrendingMovies.app/TrendingMovies","type":"macho","image_size":1720320,"image_vmaddr":"0x0000000100000000"}"#; diff --git a/relay-server/tests/fixtures/profiles/typescript.json b/relay-server/tests/fixtures/profiles/typescript.json new file mode 100644 index 0000000000..263134f7e1 --- /dev/null +++ b/relay-server/tests/fixtures/profiles/typescript.json @@ -0,0 +1,10834 @@ +{ + "profile": [ + { + "name": "process_name", + "args": { + "name": "tsc" + }, + "cat": "__metadata", + "ph": "M", + "ts": 189644.04201507568, + "pid": 1, + "tid": 1 + }, + { + "name": "thread_name", + "args": { + "name": "Main" + }, + "cat": "__metadata", + "ph": "M", + "ts": 189644.04201507568, + "pid": 1, + "tid": 1 + }, + { + "name": "TracingStartedInBrowser", + "cat": "disabled-by-default-devtools.timeline", + "ph": "M", + "ts": 189644.04201507568, + "pid": 1, + "tid": 1 + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "program", + "ts": 190923.2258796692, + "name": "createProgram", + "args": { + "configFilePath": "/Users/user/Documents/repos/test/app/tsconfig.json" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 193337.5849723816, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/App.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 198910.31503677368, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/App.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 201449.64909553528, + "name": "resolveModuleNamesWorker", + "dur": 13846.629858016968, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/src/App.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 216256.31308555603, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/jsx-runtime.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 217076.93696022034, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/jsx-runtime.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 218925.61197280884, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 295070.6579685211, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 296197.3600387573, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 299365.9119606018, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react/global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 299853.03497314453, + "name": "resolveModuleNamesWorker", + "dur": 9133.656024932861, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@types/react/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 313940.55104255676, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/csstype/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 425960.2630138397, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/csstype/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 309141.96705818176, + "name": "findSourceFile", + "dur": 116920.87197303772, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/csstype/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 427186.21492385864, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/prop-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 428941.9310092926, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/prop-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 430335.4308605194, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/scheduler/tracing.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 431374.90487098694, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/scheduler/tracing.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 429062.87002563477, + "name": "findSourceFile", + "dur": 2422.61004447937, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/scheduler/tracing.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 217667.59204864502, + "name": "findSourceFile", + "dur": 213861.41204833984, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/react/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 215720.0779914856, + "name": "findSourceFile", + "dur": 215859.61604118347, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/react/jsx-runtime.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 432806.39696121216, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 434196.9258785248, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 434404.00409698486, + "name": "resolveModuleNamesWorker", + "dur": 6923.4619140625, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 442554.98003959656, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 443162.2669696808, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 446068.3789253235, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 448270.78795433044, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 449639.5308971405, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/queries.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 452154.7510623932, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/queries.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 453437.0028972626, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/matches.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 453860.51392555237, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/matches.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 458411.57507896423, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/aria-query/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 459308.16292762756, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/aria-query/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 460297.81794548035, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/query-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 461138.43989372253, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/query-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 462426.96499824524, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 464606.0869693756, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 459398.0989456177, + "name": "findSourceFile", + "dur": 5291.692018508911, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/query-helpers.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 448529.66594696045, + "name": "findSourceFile", + "dur": 16262.835025787354, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/queries.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 444918.06507110596, + "name": "findSourceFile", + "dur": 19906.848907470703, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 466066.7998790741, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/screen.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 466292.1929359436, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/screen.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 469060.8220100403, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 469506.2439441681, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 470739.83907699585, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 471467.9970741272, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 469778.3679962158, + "name": "findSourceFile", + "dur": 1760.3240013122559, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/types.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 468108.4189414978, + "name": "findSourceFile", + "dur": 3504.8041343688965, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/pretty-format/build/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 465022.61304855347, + "name": "findSourceFile", + "dur": 6674.017906188965, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/screen.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 472658.78796577454, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 472799.71408843994, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 473912.0509624481, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/get-node-text.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 474004.23407554626, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/get-node-text.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 475000.62894821167, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 475359.0290546417, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 476308.27593803406, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/pretty-dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 476596.75097465515, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/pretty-dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 477920.4659461975, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/role-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 478255.54394721985, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/role-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 479321.7270374298, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/config.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 479764.17088508606, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/config.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 480825.0050544739, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/suggestions.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 481109.5700263977, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/suggestions.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 479855.58009147644, + "name": "findSourceFile", + "dur": 1325.6468772888184, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/suggestions.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 441453.01389694214, + "name": "findSourceFile", + "dur": 39882.35306739807, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/dom/types/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 482708.074092865, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 483507.92503356934, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 485145.9150314331, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/test-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 487171.639919281, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/test-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 431738.85893821716, + "name": "findSourceFile", + "dur": 55974.86710548401, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 488644.27495002747, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/App.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 490089.1020298004, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/App.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 487816.9479370117, + "name": "findSourceFile", + "dur": 2995.995044708252, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/App.tsx", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 192372.75791168213, + "name": "findSourceFile", + "dur": 298490.9451007843, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/App.test.tsx", + "fileIncludeKind": "RootFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 491717.83089637756, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 492293.8859462738, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 494280.1089286804, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/client.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 495059.39507484436, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/react-dom/client.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 496199.23186302185, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/reportWebVitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 497677.16002464294, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/reportWebVitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 498200.9859085083, + "name": "resolveModuleNamesWorker", + "dur": 2231.342077255249, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/src/reportWebVitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 501655.3840637207, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 501872.84994125366, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 504132.4710845947, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getCLS.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 504350.5959510803, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getCLS.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 505516.7770385742, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 505993.63899230957, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 506992.01488494873, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getFCP.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 507183.8119029999, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getFCP.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 508237.82300949097, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getFID.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 508406.22091293335, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getFID.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 509443.0558681488, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getLCP.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 509628.47995758057, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getLCP.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 510638.6559009552, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getTTFB.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 510792.484998703, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getTTFB.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 509792.6330566406, + "name": "findSourceFile", + "dur": 1165.160894393921, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/getTTFB.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 500562.25395202637, + "name": "findSourceFile", + "dur": 10463.154077529907, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/web-vitals/dist/modules/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 495310.96291542053, + "name": "findSourceFile", + "dur": 15796.784162521362, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/reportWebVitals.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 490956.81500434875, + "name": "findSourceFile", + "dur": 20186.24186515808, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/index.tsx", + "fileIncludeKind": "RootFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 511886.2750530243, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/react-app-env.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 512377.27093696594, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/react-app-env.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 516417.78087615967, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 517519.8690891266, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 517598.7470149994, + "name": "resolveTypeReferenceDirectiveNamesWorker", + "dur": 3004.014015197754, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 521735.4760169983, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 522898.5378742218, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 524106.38999938965, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/assert.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 533326.858997345, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/assert.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 522990.8359050751, + "name": "findSourceFile", + "dur": 10532.886981964111, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/assert.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 534697.5500583649, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/assert/strict.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 534948.7318992615, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/assert/strict.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 537532.8960418701, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/globals.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 540796.7939376831, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/globals.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 536434.1108798981, + "name": "findSourceFile", + "dur": 4462.785005569458, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/globals.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 542034.2800617218, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/async_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 546582.4799537659, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/async_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 548338.5400772095, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/buffer.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 566309.7770214081, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/buffer.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 546792.5939559937, + "name": "findSourceFile", + "dur": 20486.897945404053, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/buffer.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 568545.1900959015, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/child_process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 577071.1390972137, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/child_process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 577292.9470539093, + "name": "resolveModuleNamesWorker", + "dur": 3087.7718925476074, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/child_process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 567417.298078537, + "name": "findSourceFile", + "dur": 13096.451997756958, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/child_process.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 581830.4688930511, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/cluster.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 585542.0808792114, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/cluster.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 587699.5649337769, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/console.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 589816.2319660187, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/console.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 589965.2788639069, + "name": "resolveModuleNamesWorker", + "dur": 753.2391548156738, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/console.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 586520.8220481873, + "name": "findSourceFile", + "dur": 4284.034967422485, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/console.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 592002.338886261, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/constants.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 595219.0718650818, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/constants.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 597772.1660137177, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/crypto.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 619990.7820224762, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/crypto.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 596466.078042984, + "name": "findSourceFile", + "dur": 24568.62497329712, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/crypto.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 622489.471912384, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dgram.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 625200.1090049744, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dgram.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 627346.312046051, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/diagnostics_channel.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 628093.5909748077, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/diagnostics_channel.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 630163.4180545807, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dns.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 634277.7440547943, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dns.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 628310.3110790253, + "name": "findSourceFile", + "dur": 6804.919958114624, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dns.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 636898.5850811005, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dns/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 638877.2559165955, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/dns/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 640752.4530887604, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/domain.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 641601.2279987335, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/domain.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 639294.5399284363, + "name": "findSourceFile", + "dur": 2457.7579498291016, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/domain.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 643615.1130199432, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 646121.7799186707, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 648627.1328926086, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 673217.4248695374, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 646276.4930725098, + "name": "findSourceFile", + "dur": 27660.947799682617, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 675672.8079319, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 682290.8070087433, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 674002.5658607483, + "name": "findSourceFile", + "dur": 8712.29100227356, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/fs/promises.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 685126.266002655, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 697109.2839241028, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 682779.6900272369, + "name": "findSourceFile", + "dur": 14613.425970077515, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 700677.1359443665, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http2.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 716686.4330768585, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http2.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 697490.9520149231, + "name": "findSourceFile", + "dur": 20198.699951171875, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/http2.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 720617.9699897766, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/https.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 723899.316072464, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/https.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 717769.4880962372, + "name": "findSourceFile", + "dur": 6435.708999633789, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/https.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 727350.250005722, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/inspector.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 749289.6509170532, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/inspector.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 724283.154964447, + "name": "findSourceFile", + "dur": 25220.54100036621, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/inspector.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 752356.1689853668, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/module.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 753122.2860813141, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/module.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 749596.8570709229, + "name": "findSourceFile", + "dur": 3746.1869716644287, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/module.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 756458.4829807281, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/net.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 762311.7408752441, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/net.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 753512.1819972992, + "name": "findSourceFile", + "dur": 9058.22491645813, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/net.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 765486.986875534, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/os.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 767776.3719558716, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/os.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 770493.9658641815, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/path.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 771522.2868919373, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/path.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 767897.0680236816, + "name": "findSourceFile", + "dur": 3744.925022125244, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/path.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 774452.064037323, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/perf_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 776852.5269031525, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/perf_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 781008.8748931885, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 785827.9099464417, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 777906.1770439148, + "name": "findSourceFile", + "dur": 9413.323879241943, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/process.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 787702.4390697479, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/punycode.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 788362.7769947052, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/punycode.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 788979.6059131622, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/querystring.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 789821.4380741119, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/querystring.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 790373.5370635986, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/readline.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 793064.6350383759, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/readline.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 789943.3300495148, + "name": "findSourceFile", + "dur": 3325.6618976593018, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/readline.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 793814.6688938141, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/repl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 796037.7020835876, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/repl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 797990.3528690338, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 804092.2050476074, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 797455.69896698, + "name": "findSourceFile", + "dur": 7735.249042510986, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 805733.0648899078, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 806135.3180408478, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 806954.9050331116, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/consumers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 807273.2689380646, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/consumers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 807931.9939613342, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/web.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 809924.959897995, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/web.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 807477.8108596802, + "name": "findSourceFile", + "dur": 2582.5541019439697, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/stream/web.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 810625.0400543213, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/string_decoder.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 811149.1010189056, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/string_decoder.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 811739.4740581512, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/timers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 812509.4740390778, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/timers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 813735.270023346, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/timers/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 814118.8099384308, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/timers/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 815274.1289138794, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/tls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 823601.037979126, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/tls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 814951.8189430237, + "name": "findSourceFile", + "dur": 8853.753089904785, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/tls.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 824174.5309829712, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/trace_events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 824758.1510543823, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/trace_events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 825316.0440921783, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/tty.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 826608.1390380859, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/tty.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 827225.4219055176, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/url.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 830148.9930152893, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/url.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 826807.9080581665, + "name": "findSourceFile", + "dur": 4699.994802474976, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/url.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 832125.8449554443, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/util.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 838090.2049541473, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/util.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 839071.9199180603, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/v8.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 840456.6979408264, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/v8.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 838398.598909378, + "name": "findSourceFile", + "dur": 2241.724967956543, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/v8.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 841125.3049373627, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/vm.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 842940.4780864716, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/vm.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 843451.9929885864, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/wasi.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 844069.5090293884, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/wasi.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 844642.84491539, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/worker_threads.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 847624.1879463196, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/worker_threads.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 849147.6399898529, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/zlib.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 851481.4388751984, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/zlib.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 848662.6789569855, + "name": "findSourceFile", + "dur": 3014.620065689087, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/zlib.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 852343.6858654022, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/globals.global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 852455.9600353241, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/node/globals.global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 853589.1289710999, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 853888.0939483643, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 854746.5989589691, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 854974.4119644165, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 855922.5540161133, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 856161.031961441, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 857029.7429561615, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 857250.895023346, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 858003.5810470581, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2016.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 858209.0239524841, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2016.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 859092.7319526672, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 859376.1789798737, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 860524.8169898987, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es5.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 890381.5400600433, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es5.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 859789.8988723755, + "name": "findSourceFile", + "dur": 30703.115224838257, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es5.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 891365.7450675964, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.core.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 893530.5969715118, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.core.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 894348.7129211426, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.collection.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 894863.9450073242, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.collection.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 895749.6159076691, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 897929.1679859161, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 900071.5789794922, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 900329.5340538025, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 898317.9910182953, + "name": "findSourceFile", + "dur": 2065.3018951416016, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 895311.5830421448, + "name": "findSourceFile", + "dur": 5120.136022567749, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 901201.2190818787, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.generator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 901567.7030086517, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.generator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 902309.9188804626, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 902768.100976944, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 903453.7160396576, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.proxy.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 903718.3709144592, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.proxy.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 904268.5439586639, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.reflect.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 904804.270029068, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.reflect.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 905596.4999198914, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 906852.0979881287, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 858636.2769603729, + "name": "findSourceFile", + "dur": 48330.605030059814, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2015.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 907672.7020740509, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2016.array.include.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 908133.0180168152, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2016.array.include.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 857686.928987503, + "name": "findSourceFile", + "dur": 50504.76288795471, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2016.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 908930.2079677582, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 909258.4130764008, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 909974.4629859924, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 910535.1450443268, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 909735.6479167938, + "name": "findSourceFile", + "dur": 948.0900764465332, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 911227.1890640259, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 911447.2980499268, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 911973.3378887177, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 912107.7880859375, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 912634.2630386353, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 912775.876045227, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 856600.1269817352, + "name": "findSourceFile", + "dur": 56226.20391845703, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2017.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 913447.5769996643, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 913687.1728897095, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 914283.7700843811, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 914597.925901413, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 915320.7330703735, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 915481.8279743195, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 916087.2650146484, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.regexp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 916235.7840538025, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.regexp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 916780.4598808289, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 917099.0469455719, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 855469.9459075928, + "name": "findSourceFile", + "dur": 61684.213161468506, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2018.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 917868.8108921051, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 918435.2059364319, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 918959.9599838257, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 919151.0660648346, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 919868.9188957214, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 920043.4529781342, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 919487.2939586639, + "name": "findSourceFile", + "dur": 607.9421043395996, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.string.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 920591.0499095917, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 920699.8748779297, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 854304.8899173737, + "name": "findSourceFile", + "dur": 66441.70713424683, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2019.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 921493.9420223236, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.bigint.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 927254.9579143524, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.bigint.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 928122.60389328, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 929819.4489479065, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 930425.313949585, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.date.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 930761.6379261017, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.date.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 931552.3219108582, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.number.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 931744.9309825897, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.number.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 932459.9430561066, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 932819.9760913849, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 933465.2628898621, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 933968.7399864197, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 934692.8479671478, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 934867.0408725739, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 935776.7159938812, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 936005.2969455719, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 853133.3498954773, + "name": "findSourceFile", + "dur": 83067.30508804321, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2020.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 937040.6050682068, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.esnext.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 937213.6290073395, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.esnext.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 520686.2349510193, + "name": "findSourceFile", + "dur": 416651.53193473816, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/node/index.d.ts", + "fileIncludeKind": "TypeReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 520668.1959629059, + "name": "processTypeReferenceDirective", + "dur": 416732.7380180359, + "args": { + "directive": "node", + "hasResolved": true, + "refKind": 5, + "refPath": "/users/user/documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 515400.35796165466, + "name": "findSourceFile", + "dur": 422749.0179538727, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts", + "fileIncludeKind": "TypeReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 515303.61890792847, + "name": "processTypeReferenceDirective", + "dur": 422905.24411201477, + "args": { + "directive": "react-scripts", + "hasResolved": true, + "refKind": 5, + "refPath": "/users/user/documents/repos/test/app/src/react-app-env.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 511198.1248855591, + "name": "findSourceFile", + "dur": 427055.6151866913, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/react-app-env.d.ts", + "fileIncludeKind": "RootFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 938458.4860801697, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/setupTests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 938589.7870063782, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/src/setupTests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 938694.0710544586, + "name": "resolveModuleNamesWorker", + "dur": 2043.0119037628174, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/src/setupTests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 941214.525938034, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 941447.8979110718, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 943436.763048172, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/jest/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 950225.3558635712, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/jest/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 952368.0920600891, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-matcher-utils/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 953042.0088768005, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-matcher-utils/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 955698.8620758057, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/chalk/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 956854.2039394379, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/chalk/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 957331.7608833313, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 957552.9999732971, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 958428.139925003, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/cleanupSemantic.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 959505.5179595947, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/cleanupSemantic.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 960034.961938858, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/diffLines.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 960380.3679943085, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/diffLines.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 960947.6299285889, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 961310.5800151825, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 959607.8040599823, + "name": "findSourceFile", + "dur": 2059.7968101501465, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/diffLines.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 962092.8380489349, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/printDiffs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 962332.722902298, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/printDiffs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 956926.5220165253, + "name": "findSourceFile", + "dur": 5605.588912963867, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/jest-diff/build/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 952001.0380744934, + "name": "findSourceFile", + "dur": 10574.673891067505, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/jest-matcher-utils/build/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 942853.8589477539, + "name": "findSourceFile", + "dur": 19824.784994125366, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/jest/index.d.ts", + "fileIncludeKind": "TypeReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 942840.0840759277, + "name": "processTypeReferenceDirective", + "dur": 19892.018795013428, + "args": { + "directive": "jest", + "hasResolved": true, + "refKind": 5, + "refPath": "/users/user/documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 963411.3850593567, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/testing-library__jest-dom/matchers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 967279.0939807892, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/testing-library__jest-dom/matchers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 940845.1910018921, + "name": "findSourceFile", + "dur": 26515.558004379272, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 938337.9089832306, + "name": "findSourceFile", + "dur": 29058.738946914673, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/src/setupTests.ts", + "fileIncludeKind": "RootFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 192084.71703529358, + "name": "processRootFiles", + "dur": 775344.7530269623, + "args": { + "count": 6 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 997284.2769622803, + "name": "resolveTypeReferenceDirectiveNamesWorker", + "dur": 10101.449012756348, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/__inferred type names__.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1007648.4370231628, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1010445.720911026, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1014338.8669490814, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__generator/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1015119.4260120392, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__generator/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1016031.8169593811, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@babel/types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1041164.5309925079, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@babel/types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1015335.0839614868, + "name": "findSourceFile", + "dur": 26136.411905288696, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@babel/types/lib/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1013938.0769729614, + "name": "findSourceFile", + "dur": 27572.69310951233, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__generator/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1042047.3730564117, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@babel/parser/typings/babel-parser.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1042732.9020500183, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@babel/parser/typings/babel-parser.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1043635.2469921112, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__template/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1044133.9559555054, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__template/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1045016.4060592651, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__traverse/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1051746.7329502106, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__traverse/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1044518.5270309448, + "name": "findSourceFile", + "dur": 7566.836833953857, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__traverse/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1007518.8949108124, + "name": "findSourceFile", + "dur": 44655.522108078, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/babel__core/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1007510.6768608093, + "name": "processTypeReferenceDirective", + "dur": 44704.87403869629, + "args": { + "directive": "babel__core", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1052653.1190872192, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/body-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1053187.208890915, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/body-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1055044.3019866943, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/connect/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1055546.9450950623, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/connect/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1056509.2079639435, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/bonjour/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1056972.6009368896, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/bonjour/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1058350.6588935852, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/connect-history-api-fallback/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1058597.0849990845, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/connect-history-api-fallback/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1060423.0060577393, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/express-serve-static-core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1071823.2760429382, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/express-serve-static-core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1076794.3410873413, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/range-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1077264.0190124512, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/range-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1077832.5440883636, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/qs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1078466.7739868164, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/qs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1060009.4530582428, + "name": "findSourceFile", + "dur": 18527.508974075317, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/express-serve-static-core/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1057965.7859802246, + "name": "findSourceFile", + "dur": 20610.774040222168, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/connect-history-api-fallback/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1057954.596042633, + "name": "processTypeReferenceDirective", + "dur": 20661.90791130066, + "args": { + "directive": "connect-history-api-fallback", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1079163.0380153656, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1088232.20205307, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1088820.5840587616, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1088982.2490215302, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1090584.1178894043, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/lib/rules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1090907.2160720825, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/lib/rules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1089070.7850456238, + "name": "findSourceFile", + "dur": 3668.733835220337, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/lib/rules/index.d.ts", + "fileIncludeKind": "ReferenceFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1094786.1008644104, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/json-schema/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1099288.0430221558, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/json-schema/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1099705.0230503082, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/estree/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1101855.5750846863, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/estree/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1099394.8690891266, + "name": "findSourceFile", + "dur": 2563.283920288086, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/estree/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1078682.4600696564, + "name": "findSourceFile", + "dur": 23317.240953445435, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1078664.2529964447, + "name": "processTypeReferenceDirective", + "dur": 23374.125003814697, + "args": { + "directive": "eslint", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1102553.7109375, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1103005.0730705261, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1105155.4689407349, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1109259.7970962524, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1109657.303094864, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1109781.9390296936, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1109899.425983429, + "name": "resolveModuleNamesWorker", + "dur": 361.10997200012207, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1104707.023859024, + "name": "findSourceFile", + "dur": 5678.901195526123, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts", + "fileIncludeKind": "Import" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1102105.0798892975, + "name": "findSourceFile", + "dur": 8342.183113098145, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/eslint-scope/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1102086.4119529724, + "name": "processTypeReferenceDirective", + "dur": 8399.982929229736, + "args": { + "directive": "eslint-scope", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1110852.8468608856, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/express/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1111561.1379146576, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/express/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1112269.2520618439, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/serve-static/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1112783.341884613, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/serve-static/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1115093.330860138, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/mime/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1115367.3679828644, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/mime/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1118198.8639831543, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/graceful-fs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1118399.4669914246, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/graceful-fs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1119646.1689472198, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/html-minifier-terser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1120487.123966217, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/html-minifier-terser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1119353.621006012, + "name": "findSourceFile", + "dur": 1196.9070434570312, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/html-minifier-terser/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1119343.3330059052, + "name": "processTypeReferenceDirective", + "dur": 1267.3039436340332, + "args": { + "directive": "html-minifier-terser", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1121136.969089508, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/http-proxy/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1126240.0810718536, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/http-proxy/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1129377.965927124, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-lib-coverage/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1129962.4149799347, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-lib-coverage/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1129079.2789459229, + "name": "findSourceFile", + "dur": 948.728084564209, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-lib-coverage/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1129063.570022583, + "name": "processTypeReferenceDirective", + "dur": 1007.652997970581, + "args": { + "directive": "istanbul-lib-coverage", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1130572.0798969269, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-lib-report/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1131407.9990386963, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-lib-report/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1133060.949087143, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-reports/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1133424.2169857025, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/istanbul-reports/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1134991.462945938, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/json5/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1135224.6599197388, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/json5/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1135551.1510372162, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/parse-json/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1135693.8149929047, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/parse-json/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1136214.0340805054, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/prettier/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1139954.9400806427, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/prettier/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1135772.5570201874, + "name": "findSourceFile", + "dur": 4282.463073730469, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/prettier/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1135760.027885437, + "name": "processTypeReferenceDirective", + "dur": 4340.301990509033, + "args": { + "directive": "prettier", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1140731.7819595337, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/q/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1143624.643087387, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/q/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1144234.28606987, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/resolve/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1144966.4480686188, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/resolve/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1145495.9008693695, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/retry/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1146268.466949463, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/retry/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1146789.5770072937, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/scheduler/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1147096.610069275, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/scheduler/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1147606.8148612976, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/serve-index/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1147848.6459255219, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/serve-index/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1149545.443058014, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/sockjs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1149837.0130062103, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/sockjs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1149905.2760601044, + "name": "resolveTypeReferenceDirectiveNamesWorker", + "dur": 122.59984016418457, + "args": { + "containingFileName": "/Users/user/Documents/repos/test/app/node_modules/@types/sockjs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1149316.5838718414, + "name": "findSourceFile", + "dur": 1019.7679996490479, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/sockjs/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1149306.8399429321, + "name": "processTypeReferenceDirective", + "dur": 1074.3110179901123, + "args": { + "directive": "sockjs", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1150683.8738918304, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/stack-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1150988.2299900055, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/stack-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1151349.6680259705, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/trusted-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1151657.788991928, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/trusted-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1152476.8469333649, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/trusted-types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1152853.1460762024, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/trusted-types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1153179.946899414, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/ws/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1155033.33902359, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/ws/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1157456.9599628448, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/yargs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1161804.661989212, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/yargs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1163451.4908790588, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/yargs-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1164050.050020218, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/@types/yargs-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1157011.5630626678, + "name": "findSourceFile", + "dur": 7090.407848358154, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/@types/yargs/index.d.ts", + "fileIncludeKind": "AutomaticTypeDirectiveFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1157002.466917038, + "name": "processTypeReferenceDirective", + "dur": 7133.152961730957, + "args": { + "directive": "yargs", + "hasResolved": true, + "refKind": 8 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 997274.3589878082, + "name": "processTypeReferences", + "dur": 166933.19487571716, + "args": { + "count": 45 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1167926.7978668213, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1251302.2019863129, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1164578.7189006805, + "name": "findSourceFile", + "dur": 87174.91912841797, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.dom.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1252663.3830070496, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.dom.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1254375.3640651703, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.dom.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1255258.1419944763, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.esnext.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1255377.0699501038, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.esnext.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1256152.0669460297, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1256268.3250904083, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1257042.2339439392, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1257158.4780216217, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1259811.0959529877, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1260153.4490585327, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1259350.830078125, + "name": "findSourceFile", + "dur": 861.0198497772217, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.promise.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1260796.0460186005, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1261007.10105896, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1261545.4289913177, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.weakref.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1261925.227880478, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.weakref.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1262505.6240558624, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1263415.9579277039, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1256605.9410572052, + "name": "findSourceFile", + "dur": 6872.731924057007, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2021.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1264081.887960434, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1264540.3909683228, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1265084.1710567474, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.error.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1265320.559978485, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.error.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1265924.7329235077, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1266419.2669391632, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1266959.5348834991, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1267113.8689517975, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "parse", + "ts": 1267662.348985672, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "parse", + "ts": 1267808.2489967346, + "name": "createSourceFile", + "args": { + "path": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1255712.5389575958, + "name": "findSourceFile", + "dur": 12151.339054107666, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.es2022.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibReferenceDirective" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "program", + "ts": 1254776.8468856812, + "name": "findSourceFile", + "dur": 13182.296991348267, + "args": { + "fileName": "/Users/user/Documents/repos/test/app/node_modules/typescript/lib/lib.esnext.d.ts", + "isDefaultLib": true, + "fileIncludeKind": "LibFile" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "program", + "ts": 1276764.9610042572, + "name": "createProgram", + "args": { + "configFilePath": "/Users/user/Documents/repos/test/app/tsconfig.json" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1285126.9810199738, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es5.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1307879.525899887, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es5.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308104.5610904694, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308218.3439731598, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308268.2020664215, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2016.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308304.5690059662, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2016.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308337.7530574799, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308369.2140579224, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308404.718875885, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308436.1400604248, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308471.5399742126, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308503.1979084015, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308533.4849357605, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308564.3129348755, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308612.8749847412, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308646.1329460144, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308682.2400093079, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1308789.922952652, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1308879.4569969177, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.esnext.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1309028.8500785828, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.esnext.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1309073.9319324493, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1372359.7168922424, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1372453.4139633179, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.dom.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1374996.7849254608, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.dom.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1375064.1329288483, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.core.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1376009.204864502, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.core.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1376057.214975357, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.collection.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1376509.5570087433, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.collection.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1376550.5409240723, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.generator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1376737.0660305023, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.generator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1376776.2620449066, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1377851.3689041138, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.iterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1377891.741991043, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1378078.7239074707, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1378116.6880130768, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.proxy.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1378353.3399105072, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.proxy.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1378390.1019096375, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.reflect.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1378829.3058872223, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.reflect.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1378892.5449848175, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1379069.0579414368, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1379113.723039627, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1379898.8349437714, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1379956.0329914093, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2016.array.include.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1380153.6710262299, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2016.array.include.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1380190.731048584, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1380389.8470401764, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1380431.261062622, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1380717.6990509033, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1380754.7190189362, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1380809.9029064178, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1380841.3360118866, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1381027.3690223694, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1381087.0459079742, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1381173.0499267578, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1381216.8080806732, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1381430.6290149689, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1381473.6139774323, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1381591.381072998, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1381627.1479129791, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1381961.1070156097, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1382001.5408992767, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1382066.9178962708, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1382105.8390140533, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.regexp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1382171.5970039368, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2018.regexp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1382204.9310207367, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1382996.4380264282, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1383058.543920517, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1383147.7119922638, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1383184.6170425415, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1383243.4930801392, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1383277.498960495, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1383320.4050064087, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2019.symbol.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1383353.5060882568, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.bigint.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1385131.2608718872, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.bigint.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1385209.1090679169, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.date.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1385387.3200416565, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.date.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1385432.1038722992, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1385598.692893982, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1385637.8688812256, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1385821.2649822235, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1385856.1508655548, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1385903.380870819, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1385939.0320777893, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1386002.2809505463, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1386036.320924759, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1386942.73686409, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1386996.4110851288, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.number.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1387061.8600845337, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2020.number.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1387097.5229740143, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1387281.457901001, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.promise.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1387320.9960460663, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1387397.9289531708, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1387433.6478710175, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.weakref.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1387584.410905838, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.weakref.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1387620.204925537, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1388152.4169445038, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2021.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1388204.0429115295, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1388396.471977234, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.array.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1388432.2760105133, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.error.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1388658.7929725647, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.error.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1388693.5670375824, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1388988.8288974762, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1389033.8010787964, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1389086.9178771973, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.object.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1389120.0499534607, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1389163.9778614044, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.es2022.string.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1389195.7240104675, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.esnext.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1389281.502008438, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/typescript/lib/lib.esnext.intl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1389316.7850971222, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1389940.4270648956, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1389975.636959076, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/csstype/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1417621.6468811035, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/csstype/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1417715.5029773712, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/prop-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1418598.7420082092, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/prop-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1418651.1549949646, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/scheduler/tracing.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1418985.2080345154, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/scheduler/tracing.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1419026.489019394, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1439957.997083664, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1440041.4650440216, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/jsx-runtime.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1440183.207988739, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react/jsx-runtime.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1440231.313943863, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/aria-query/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1441108.2248687744, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/aria-query/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1441147.1018791199, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/matches.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1441364.224910736, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/matches.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1441404.799938202, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1441514.456987381, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1441548.6779212952, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/query-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1442004.653930664, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/query-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1442049.2150783539, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/queries.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1443690.0899410248, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/queries.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1443739.9768829346, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1444994.253873825, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/get-queries-for-element.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1445039.8840904236, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/pretty-format/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1445534.147977829, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/pretty-format/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1445575.9160518646, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/pretty-format/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1445832.5440883636, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/pretty-format/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1445874.7658729553, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/screen.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1445991.3120269775, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/screen.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446026.7210006714, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446097.759962082, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446129.9450397491, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/get-node-text.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446174.3080615997, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/get-node-text.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446204.0848731995, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446523.1359004974, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446586.5449905396, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/pretty-dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446723.5288619995, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/pretty-dom.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446764.0628814697, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/role-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446838.1750583649, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/role-helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1446869.7719573975, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/config.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1446999.2010593414, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/config.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1447033.3449840546, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/suggestions.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1447131.65807724, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/suggestions.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1447163.1789207458, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1447264.988899231, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/dom/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1447298.5820770264, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1447702.6770114899, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1447738.9380931854, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/test-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1448855.4060459137, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/test-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1448896.7549800873, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1449204.0259838104, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@testing-library/react/types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1449240.4379844666, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1449913.6409759521, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1449958.8780403137, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1450808.5088729858, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1450852.8518676758, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/client.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451042.4599647522, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/react-dom/client.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451137.0730400085, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451465.7180309296, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451512.5050544739, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getcls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451598.7660884857, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getcls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451629.6060085297, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getfcp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451696.860074997, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getfcp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451726.613998413, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getfid.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451793.6630249023, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getfid.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451823.1160640717, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getlcp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451889.5030021667, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getlcp.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1451918.6379909515, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getttfb.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1451975.828886032, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/getttfb.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1452004.9140453339, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1452084.55991745, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/web-vitals/dist/modules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1452114.1169071198, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1453286.7999076843, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1453335.107088089, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1453614.3260002136, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1453654.277086258, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/assert.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1454858.3030700684, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/assert.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1454919.7309017181, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/assert/strict.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1455010.1170539856, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/assert/strict.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1455041.1660671234, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/globals.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1456169.3000793457, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/globals.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1456213.438987732, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/async_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1456773.2028961182, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/async_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1456814.4040107727, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/buffer.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1459331.3040733337, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/buffer.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1459399.5430469513, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/child_process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1463682.2628974915, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/child_process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1463750.9980201721, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/cluster.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1465694.8120594025, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/cluster.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1465757.2209835052, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/console.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1466402.6238918304, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/console.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1466608.1609725952, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/constants.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1466717.2429561615, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/constants.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1466749.7379779816, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/crypto.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1480235.4140281677, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/crypto.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1480317.6140785217, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dgram.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1481337.5089168549, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dgram.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1481391.9279575348, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/diagnostics_channel.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1481563.9579296112, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/diagnostics_channel.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1481607.325077057, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dns.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1483819.799900055, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dns.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1483898.3569145203, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dns/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1484537.518978119, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/dns/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1484587.4938964844, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/domain.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1484759.4799995422, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/domain.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1484799.8659610748, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1485784.8019599915, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1485856.8699359894, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/fs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1493518.4769630432, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/fs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1493597.6650714874, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/fs/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1494753.4499168396, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/fs/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1494800.015926361, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/http.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1497213.5260105133, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/http.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1497266.38007164, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/http2.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1503305.3829669952, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/http2.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1503391.0698890686, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/https.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1504836.7230892181, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/https.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1504891.6189670563, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/inspector.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1510703.1860351562, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/inspector.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1510790.5130386353, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/module.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1511236.6909980774, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/module.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1511287.5928878784, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/net.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1513149.5490074158, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/net.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1513198.1439590454, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/os.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1514400.1488685608, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/os.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1514446.888923645, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/path.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1514714.9019241333, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/path.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1514755.7199001312, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/perf_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1515226.5858650208, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/perf_hooks.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1515268.6259746552, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1516951.246023178, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/process.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1516999.1800785065, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/punycode.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1517204.1940689087, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/punycode.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1517246.9599246979, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/querystring.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1517402.3079872131, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/querystring.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1517473.3910560608, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/readline.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1518248.44789505, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/readline.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1518290.9700870514, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/repl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1519034.6879959106, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/repl.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1519075.6978988647, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1522532.823085785, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1522595.9289073944, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1522831.4290046692, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1522870.4319000244, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/consumers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1523026.2830257416, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/consumers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1523066.829919815, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/web.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1523852.6420593262, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/stream/web.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1523890.6478881836, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/string_decoder.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1523974.4250774384, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/string_decoder.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1524007.94506073, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/timers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1524435.8899593353, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/timers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1524488.9788627625, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/timers/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1524603.3260822296, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/timers/promises.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1524637.1688842773, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/tls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1526137.8169059753, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/tls.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1526180.6020736694, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/trace_events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1526262.9890441895, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/trace_events.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1526293.9898967743, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/tty.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1526583.967924118, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/tty.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1526621.346950531, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/url.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1527113.1100654602, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/url.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1527155.9269428253, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/util.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1534231.024980545, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/util.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1534317.990064621, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/v8.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1534605.5300235748, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/v8.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1534648.675918579, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/vm.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1534949.245929718, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/vm.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1534991.2180900574, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/wasi.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1535102.7500629425, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/wasi.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1535140.1119232178, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/worker_threads.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1536194.1130161285, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/worker_threads.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1536250.7109642029, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/zlib.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1537837.308883667, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/zlib.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1537919.8648929596, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/globals.global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1537970.1099395752, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/globals.global.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1538004.7080516815, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1538053.4489154816, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/node/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1538097.2249507904, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1538905.5519104004, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/react-scripts/lib/react-app.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1538971.5659618378, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/react-app-env.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1539016.9749259949, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/react-app-env.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1539054.7358989716, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/chalk/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1539704.7078609467, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/chalk/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1539748.8100528717, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/cleanupsemantic.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1540207.0260047913, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/cleanupsemantic.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1540256.9379806519, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1540450.7038593292, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/types.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1540486.692905426, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/difflines.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1540692.4259662628, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/difflines.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1540732.027053833, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/printdiffs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1540858.7419986725, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/printdiffs.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1540898.1790542603, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1541039.6130084991, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-diff/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1541074.728012085, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-matcher-utils/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1541643.3520317078, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/jest-matcher-utils/build/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1541686.9719028473, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/jest/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1546381.136894226, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/jest/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1546436.3119602203, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/testing-library__jest-dom/matchers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1546786.4320278168, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/testing-library__jest-dom/matchers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1546826.9720077515, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1546954.8230171204, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/testing-library__jest-dom/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1546998.8350868225, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/setuptests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1547035.4878902435, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/setuptests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1547066.6270256042, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@babel/types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1565168.9450740814, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@babel/types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1565258.5499286652, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__generator/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1565491.103887558, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__generator/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1565531.3699245453, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@babel/parser/typings/babel-parser.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1565740.858078003, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@babel/parser/typings/babel-parser.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1565778.4070968628, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__template/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1566004.9579143524, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__template/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1566045.0899600983, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__traverse/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1570618.318080902, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__traverse/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1570703.588962555, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1571705.715894699, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/babel__core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1571752.1438598633, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/connect/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1572182.1410655975, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/connect/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1572226.546049118, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/body-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1572437.5629425049, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/body-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1572476.2299060822, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/bonjour/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1572827.6438713074, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/bonjour/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1572867.1340942383, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/range-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1572995.740890503, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/range-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1573033.0350399017, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/qs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1573408.7569713593, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/qs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1573450.8218765259, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/express-serve-static-core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1575000.6608963013, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/express-serve-static-core/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1575068.2320594788, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/connect-history-api-fallback/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1575224.8198986053, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/connect-history-api-fallback/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1575264.9579048157, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1575332.0569992065, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1575367.7110671997, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/lib/rules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1575435.0810050964, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/lib/rules/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1575467.3039913177, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/json-schema/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1576154.3469429016, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/json-schema/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1576189.7819042206, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/estree/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1577492.949962616, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/estree/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1577548.665046692, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1581584.7380161285, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1581686.4280700684, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1581789.125919342, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/helpers.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1581830.2159309387, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1591787.3129844666, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/node_modules/@types/eslint/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1591866.8789863586, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1592167.2990322113, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/eslint-scope/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1592219.309091568, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/mime/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1592325.4210948944, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/mime/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1592359.86495018, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/serve-static/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1592551.460981369, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/serve-static/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1592588.3450508118, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/express/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1592951.3518810272, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/express/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1592988.7690544128, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/graceful-fs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1593043.632030487, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/graceful-fs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1593075.201034546, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/html-minifier-terser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1593263.9138698578, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/html-minifier-terser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1593296.5829372406, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/http-proxy/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1593949.3160247803, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/http-proxy/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1593989.4239902496, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-lib-coverage/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1594314.54205513, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-lib-coverage/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1594351.3090610504, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-lib-report/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1594703.7210464478, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-lib-report/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1594739.8500442505, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-reports/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1594920.3388690948, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/istanbul-reports/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1594954.6349048615, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/json5/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1594997.524023056, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/json5/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1595027.2688865662, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/parse-json/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1595086.366891861, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/parse-json/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1595116.9409751892, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/prettier/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1597335.9010219574, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/prettier/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1597381.5169334412, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/q/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1599030.102968216, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/q/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1599077.9540538788, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/resolve/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1599425.7729053497, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/resolve/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1599470.244884491, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/retry/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1599656.9740772247, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/retry/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1599693.8889026642, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/scheduler/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1599884.6299648285, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/scheduler/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1599921.6949939728, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/serve-index/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1600092.453956604, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/serve-index/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1600129.2810440063, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/sockjs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1600298.3548641205, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/sockjs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1600332.7379226685, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/stack-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1600572.921037674, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/stack-utils/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1600609.4288825989, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/trusted-types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1600834.860086441, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/trusted-types/lib/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1600870.2929019928, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/trusted-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1601086.69090271, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/trusted-types/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1601124.423980713, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/ws/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1602842.6809310913, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/ws/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1602884.3989372253, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/yargs-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1603215.6779766083, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/yargs-parser/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "bind", + "ts": 1603253.336906433, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/yargs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "bind", + "ts": 1606658.3559513092, + "name": "bindSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/node_modules/@types/yargs/index.d.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "check", + "ts": 1617886.5060806274, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1627333.7218761444, + "name": "checkDeferredNode", + "dur": 136811.75708770752, + "args": { + "kind": 278, + "pos": 106, + "end": 527, + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1769925.400018692, + "name": "structuredTypeRelatedTo", + "dur": 2702.4409770965576, + "args": { + "sourceId": 2168, + "targetId": 2166 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1769787.5399589539, + "name": "structuredTypeRelatedTo", + "dur": 2909.9769592285156, + "args": { + "sourceId": 2156, + "targetId": 2164 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1769626.9710063934, + "name": "structuredTypeRelatedTo", + "dur": 3099.3008613586426, + "args": { + "sourceId": 2156, + "targetId": 2122 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1769069.0519809723, + "name": "structuredTypeRelatedTo", + "dur": 3996.753931045532, + "args": { + "sourceId": 2159, + "targetId": 601 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1769030.349969864, + "name": "structuredTypeRelatedTo", + "dur": 4080.2359580993652, + "args": { + "sourceId": 2158, + "targetId": 603 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1764224.0929603577, + "name": "checkDeferredNode", + "dur": 9701.2300491333, + "args": { + "kind": 278, + "pos": 139, + "end": 516, + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1779902.3880958557, + "name": "structuredTypeRelatedTo", + "dur": 154.59585189819336, + "args": { + "sourceId": 2269, + "targetId": 829 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1773972.328901291, + "name": "checkDeferredNode", + "dur": 6188.568115234375, + "args": { + "kind": 279, + "pos": 179, + "end": 229, + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1786612.6990318298, + "name": "checkDeferredNode", + "dur": 5261.906862258911, + "args": { + "kind": 278, + "pos": 323, + "end": 500, + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "check", + "ts": 1793659.3968868256, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "check", + "ts": 1793848.9060401917, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1799054.848909378, + "name": "checkExpression", + "dur": 4077.3420333862305, + "args": { + "kind": 79, + "pos": 191, + "end": 198, + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1809994.0280914307, + "name": "structuredTypeRelatedTo", + "dur": 90.90685844421387, + "args": { + "sourceId": 2685, + "targetId": 2688 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1819943.4008598328, + "name": "structuredTypeRelatedTo", + "dur": 73.8530158996582, + "args": { + "sourceId": 2993, + "targetId": 2996 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1849919.8870658875, + "name": "structuredTypeRelatedTo", + "dur": 203.92489433288574, + "args": { + "sourceId": 3611, + "targetId": 3615 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "checkTypes", + "ts": 1859993.3760166168, + "name": "structuredTypeRelatedTo", + "dur": 66.60890579223633, + "args": { + "sourceId": 3813, + "targetId": 3056 + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1799052.7489185333, + "name": "checkExpression", + "dur": 62665.348052978516, + "args": { + "kind": 206, + "pos": 191, + "end": 208, + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1798535.008907318, + "name": "checkVariableDeclaration", + "dur": 65223.82998466492, + "args": { + "kind": 254, + "pos": 177, + "end": 224, + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1797853.6520004272, + "name": "checkDeferredNode", + "dur": 69082.58390426636, + "args": { + "kind": 214, + "pos": 142, + "end": 270, + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "check", + "ts": 1868312.9060268402, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/app.test.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "check", + "ts": 1868481.8789958954, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1869931.0579299927, + "name": "checkExpression", + "dur": 1859.3621253967285, + "args": { + "kind": 221, + "pos": 110, + "end": 156, + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1869725.3398895264, + "name": "checkDeferredNode", + "dur": 5557.775974273682, + "args": { + "kind": 214, + "pos": 68, + "end": 390, + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "check", + "ts": 1879335.2489471436, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/reportwebvitals.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "check", + "ts": 1879425.6179332733, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1879989.3119335175, + "name": "checkExpression", + "dur": 922.0340251922607, + "args": { + "kind": 229, + "pos": 198, + "end": 247, + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1879832.7369689941, + "name": "checkExpression", + "dur": 3574.7220516204834, + "args": { + "kind": 208, + "pos": 177, + "end": 249, + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "X", + "cat": "check", + "ts": 1879623.125076294, + "name": "checkVariableDeclaration", + "dur": 3946.7878341674805, + "args": { + "kind": 254, + "pos": 170, + "end": 249, + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "check", + "ts": 1887862.9069328308, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/index.tsx" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "check", + "ts": 1888029.2129516602, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/setuptests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "check", + "ts": 1888098.9708900452, + "name": "checkSourceFile", + "args": { + "path": "/users/user/documents/repos/test/app/src/setuptests.ts" + } + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "emit", + "ts": 1888262.081861496, + "name": "emit", + "args": {} + }, + { + "pid": 1, + "tid": 1, + "ph": "B", + "cat": "emit", + "ts": 1888587.928056717, + "name": "emitBuildInfo", + "args": {} + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "emit", + "ts": 1889349.046945572, + "name": "emitBuildInfo", + "args": {} + }, + { + "pid": 1, + "tid": 1, + "ph": "E", + "cat": "emit", + "ts": 1889391.5050029755, + "name": "emit", + "args": {} + } + ], + "device_locale": "en_CA.UTF-8", + "device_manufacturer": "GitHub", + "device_model": "GitHub Actions", + "device_os_name": "darwin", + "device_os_version": "21.4.0", + "device_is_emulator": false, + "transaction_name": "typescript.compile", + "version_code": "1", + "version_name": "0.1", + "duration_ns": "87880000000", + "trace_id": "a882b1448a1c446a910063f6e9e374c2", + "transaction_id": "616fd15cb7ff4143a5d8d8e1cb74d141", + "platform": "typescript", + "environment": "ci", + "profile_id": "74c735d8d1f342559bf6b387703c2fd6" +}