Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Builtin support for reading files from their zip archives #75559

Open
arcanis opened this issue Jun 15, 2019 · 37 comments
Open

Builtin support for reading files from their zip archives #75559

arcanis opened this issue Jun 15, 2019 · 37 comments
Assignees
Labels
feature-request Request for new features or functionality file-explorer Explorer widget issues
Milestone

Comments

@arcanis
Copy link

arcanis commented Jun 15, 2019

Rel: #17271

Note: This is now possible (although non-builtin) using the ZipFS extension

High-level

It would be useful for VSCode to be able to read files even when they're stored within zip archives. Opening /foo/bar.zip/package.json would succeed. Read-only is likely fine, at least for a first iteration.

Motivation

  • This feature isn't unheard of. Both vim and emacs support reading files from zip archives (they even go a bit farther by allowing to also edit them, but we might not want to have to deal with the UI complexity for now).

  • Package managers are experimenting with virtual install folders. Being able to read third-party files from the archives that contain them will be important to provide a good developer experience (particularly for the "ctrl+click on a symbol to go to its definition" workflow). Zip will be used by Yarn because of its good random access properties.

Suggested Implementation

  • The Yarn project ships a wasm build of the libzip as an external package. This would make it easy to use a battle-tested zip library at little cost.

  • The size cost would be around ~300KB for the Zip implementation (which could be reused for other purposes - there's a bunch of things that could use Zip support down the road).

  • You might actually already have a library able to do that?

Why not an extension

  • I've started working on an extension to help with that (vscode-zipfs), but it cannot be integrated as well as I'd like. In particular, it doesn't work with the ctrl+click workflow I mentionned, and running code /foo/bar.zip/package.json cannot open the right file. I believe a builtin integration could provide a seamless integration, which would be beneficial to the users.
@jrieken jrieken added feature-request Request for new features or functionality file-io File I/O labels Jun 19, 2019
@jrieken jrieken removed their assignment Jun 19, 2019
@arcanis
Copy link
Author

arcanis commented Jul 24, 2019

@jrieken Is it something you think VSCode would be interested to merge, provided someone make a reasonable PR?

@jrieken
Copy link
Member

jrieken commented Jul 24, 2019

Not sure, this isn't highly upvoted and that kinda defines our work. I like the feature, I know this from KDE times. I am not yet convinced that this isn't a good extension candidate tho, e.g instead of code /foo/bar.zip/package.json you would call code --file-uri zip:foo/bar.zip/package.json. Not a huge blocker IMO and not a flow that cannot be improved for all file system providers

@arcanis
Copy link
Author

arcanis commented Jul 24, 2019

From what I remember, the main pain point was to open the file from within a VSCode instance already launched. For instance, running ctrl+p and pasting the virtual path won't open anything, and I think extensions aren't able to change this behavior at the moment. Similarly, ctrl+click on a symbol that comes from an in-zip file won't do anything.

@jrieken
Copy link
Member

jrieken commented Jul 25, 2019

This is good feedback and I believe we can find a good solution that applies to all file system providers, e.g.

For instance, running ctrl+p and pasting the virtual path won't open anything,

The problem is that we don't have finalised the API for search result providers. Once that's done, extensions can provide search results and cmd/ctrl+p should just be working like that.

Similarly, ctrl+click on a symbol that comes from an in-zip file won't do anything.

This is a little vague but the theory is that the language server computes a location like zip:/some/archive.zip/some/path.foolang and then vscode opens that. The C# extension does something similar with sources generated from dll-files. Still, it needs a cooperative language server

@arcanis
Copy link
Author

arcanis commented Jul 25, 2019

The problem is that we don't have finalised the API for search result providers. Once that's done, extensions can provide search results and cmd/ctrl+p should just be working like that.

Is there someplace I can track this work? I've found #59922 but it's not clear whether it got merged, reverted, or exposed as a public API.

@jrieken
Copy link
Member

jrieken commented Jul 25, 2019

#73524

@arcanis
Copy link
Author

arcanis commented Sep 30, 2019

Hey! I've just seen that #73524 got closed with a PR at #75882, but it's not clear to me what the scope of the implementation is and what the examples do exactly. Is the use case I described in the OP now possible?

I guess the main question I have is: how do I catch that VSCode is trying to read a .zip and return an in-memory TextBuffer instead? 🤔

@arcanis
Copy link
Author

arcanis commented Oct 9, 2019

Friendly ping @jrieken? 😊

@arcanis
Copy link
Author

arcanis commented Dec 29, 2019

Ping? I'm still not sure whether this can already be implemented in userland (and, if it is, through which APIs), or if there are still changes that need to land into the core (and if so, which issues to track).

cc @isidorn?

@isidorn
Copy link
Contributor

isidorn commented Dec 30, 2019

Even though as you mention that the extension can not provide a seemless experience I still think that the extension is the way to go here.
Since we do not want this feature in the core at the moment. However that might change in the future, thus leaving this open as a feature request.

@vscodebot
Copy link

vscodebot bot commented Jan 15, 2020

This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation.

Happy Coding!

@vscodebot
Copy link

vscodebot bot commented Jan 16, 2020

🙂 This feature request received a sufficient number of community upvotes and we moved it to our backlog. To learn more about how we handle feature requests, please see our documentation.

Happy Coding!

@josh-stevens
Copy link

@arcanis I'm using yarn pnp zero install inside a devcontainer, and "Go to Definition" is completely borked, even with ZipFS installed. Any idea there?

@idelice
Copy link

idelice commented Nov 30, 2021

It is still impossible to "Go to definition" when working with vscode and Yarn 2 PnP.

Is this being worked on or is it forgotten? Just curious since it has been an open issue for more than 1.5 years.

@merceyz
Copy link

merceyz commented Nov 30, 2021

It is still impossible to "Go to definition" when working with vscode and Yarn 2 PnP.

It works perfectly fine if you setup the SDK https://yarnpkg.com/getting-started/editor-sdks#vscode

@idelice
Copy link

idelice commented Nov 30, 2021

It is still impossible to "Go to definition" when working with vscode and Yarn 2 PnP.

It works perfectly fine if you setup the SDK https://yarnpkg.com/getting-started/editor-sdks#vscode

It is configurated. I recently updated all SDKs. Still doesn't work.

@Luiz-Monad
Copy link

Luiz-Monad commented Dec 4, 2021

Also didn't work here.

Steps to reproduce.

[Window Title]
Visual Studio Code

[Main Instruction]
Visual Studio Code

[Content]

Version: 1.62.3 (system setup)
Commit: ccbaa2d27e38e5afa3e5c21c1c7bef4657064247
Date: 2021-11-17T08:11:14.551Z (2 wks ago)
Electron: 13.5.2
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.22000

[OK] [Copy]
λ yarn --version
1.22.5
# add yarn2
yarn set version berry
# add plugin
yarn plugin import typescript
# add editor sdk
yarn dlx @yarnpkg/sdks vscode
# add dev dependency
yarn add typescript@next --dev
# eject it from the yarn pnp
yarn unplug typescript
# don't forget to init the repo as typescript
tsc --init
# set "allowJs": true
# add to .vscode/settings.json as per *1
{"typescript.tsdk": ".yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript"}
# run yarn
yarn

Typescript vscode.extension is v4.6.20211203

*1 change-workspace-tsserver

That doesn't look right. "goto definition" and "f12" results on this message from the tsserver.
image

Typescript has its own borked resolver.
how typescript resolves modules? r: it doesn't

Nope, doesn't work either. It looks totally wrong from what it should be doing I guess. The problem seems to being with the language server not providing any information, that can't possible be right, can it ?

diagnostics

[
{"name":"process_name","args":{"name":"tsc"},"cat":"__metadata","ph":"M","ts":288310.29999256134,"pid":1,"tid":1},
{"name":"thread_name","args":{"name":"Main"},"cat":"__metadata","ph":"M","ts":288310.29999256134,"pid":1,"tid":1},
{"name":"TracingStartedInBrowser","cat":"disabled-by-default-devtools.timeline","ph":"M","ts":288310.29999256134,"pid":1,"tid":1},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":292161.50000691414,"name":"request","s":"g","args":{"seq":0,"command":"configure"}},
{"pid":1,"tid":1,"ph":"B","cat":"session","ts":292352.5999933481,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
{"pid":1,"tid":1,"ph":"E","cat":"session","ts":293280.399993062,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":293360.40000617504,"name":"response","s":"g","args":{"seq":0,"command":"configure","success":false}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":293417.5000041723,"name":"request","s":"g","args":{"seq":1,"command":"updateOpen"}},
{"pid":1,"tid":1,"ph":"B","cat":"session","ts":293455.40000498295,"name":"executeCommand","args":{"seq":1,"command":"updateOpen"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":298438.7000054121,"name":"event","s":"g","args":{"eventName":"projectLoadingStart"}},
{"pid":1,"tid":1,"ph":"B","cat":"program","ts":437118.6999976635,"name":"createProgram","args":{"configFilePath":"c:/react-native-tizen-dotnet/tsconfig.json","rootDir":"c:/react-native-tizen-dotnet/src"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":439341.6000008583,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":449228.4000068903,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":452552.0000010729,"name":"resolveModuleNamesWorker","dur":7569.2999958992,"args":{"containingFileName":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":460505.0999969244,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":463515.399992466,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":438326.3999968767,"name":"findSourceFile","dur":28392.599999904633,"args":{"fileName":"c:/react-native-tizen-dotnet/src/bundle.js","fileIncludeKind":"RootFile"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":466860.89999973774,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":468941.7999982834,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":469215.499997139,"name":"resolveModuleNamesWorker","dur":2306.9000095129013,"args":{"containingFileName":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":466822.2000002861,"name":"findSourceFile","dur":4861.599996685982,"args":{"fileName":"c:/react-native-tizen-dotnet/src/launch.js","fileIncludeKind":"RootFile"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":471810.10000407696,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":474988.09999227524,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":478809.1000020504,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":480273.6999988556,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":478780.0000011921,"name":"findSourceFile","dur":5229.000002145767,"args":{"fileName":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js","fileIncludeKind":"RootFile"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":438065.5999928713,"name":"processRootFiles","dur":45993.10000240803,"args":{"count":5}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":485874.6999949217,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":487037.9000008106,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":489332.2000056505,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":489853.20000350475,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":492555.09999394417,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":493100.5000025034,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":495399.1999924183,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":659809.0000003576,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":494546.9000041485,"name":"findSourceFile","dur":165580.6999951601,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":664429.1999936104,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":687250.5999952555,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":663351.8999963999,"name":"findSourceFile","dur":24016.80000126362,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":690171.1999922991,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":693849.2999970913,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":689322.599992156,"name":"findSourceFile","dur":4749.600008130074,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":696342.1999961138,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":708972.399994731,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":712517.0000046492,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":716399.2999941111,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":695733.7999939919,"name":"findSourceFile","dur":20823.899999260902,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":718642.0000046492,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":719482.4000000954,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":718092.2999978065,"name":"findSourceFile","dur":3194.2000091075897,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":724637.5000029802,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":725589.8000001907,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":728932.6000064611,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":730530.3000062704,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":728177.7999997139,"name":"findSourceFile","dur":2458.299994468689,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":733900.1999944448,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":736624.7999966145,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":744232.099995017,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":756747.9999959469,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":743411.3000035286,"name":"findSourceFile","dur":15894.400000572205,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":491954.19999957085,"name":"findSourceFile","dur":267512.40000128746,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":762671.3999956846,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":765682.9999983311,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":488615.89999496937,"name":"findSourceFile","dur":277199.0000009537,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":772087.6999944448,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1096663.8000011444,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":767902.7999937534,"name":"findSourceFile","dur":329434.60001051426,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1099425.300002098,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1099573.899999261,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1101584.2999964952,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1104989.9999946356,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1107307.4000030756,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1117133.2000046968,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":1106693.8000023365,"name":"findSourceFile","dur":10600.299999117851,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
{"pid":1,"tid":1,"ph":"X","cat":"program","ts":484605.0000041723,"name":"findSourceFile","dur":632935.0999891758,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts","isDefaultLib":true,"fileIncludeKind":"LibFile"}},
{"pid":1,"tid":1,"ph":"E","cat":"program","ts":1123232.099995017,"name":"createProgram","args":{"configFilePath":"c:/react-native-tizen-dotnet/tsconfig.json","rootDir":"c:/react-native-tizen-dotnet/src"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1135091.1999940872,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1195431.8999946117,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1195511.8999928236,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1195604.8000007868,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1195634.5999985933,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1195670.2000051737,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1195695.8000063896,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1313684.300005436,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1313749.8999983072,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1321599.7000038624,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1321686.5999996662,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1321802.3999929428,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1321856.6000014544,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1326262.0999962091,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1326348.4999984503,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1330869.3999946117,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1330935.5999976397,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1332785.4000031948,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1332869.69999969,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1333385.8000040054,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1333452.500000596,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1338816.3000047207,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1338889.200001955,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1339451.1000066996,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1339516.3999944925,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1340255.1999986172,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1340320.8000063896,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1341554.7000020742,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1341615.8999949694,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1341812.900006771,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1341878.199994564,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1343510.499998927,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1343578.7000060081,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1344140.1000022888,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1344196.400001645,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1344275.7000029087,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1344326.1999934912,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1347973.199993372,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1348039.4999980927,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1352559.599995613,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1352635.9999924898,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1353499.599993229,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1353543.2000011206,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1354253.199994564,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1354291.5000021458,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1354780.399993062,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1394164.7000014782,"name":"event","s":"g","args":{"eventName":"projectLoadingFinish"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1395832.2999924421,"name":"event","s":"g","args":{"eventName":"telemetry"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397179.9000054598,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397268.2999968529,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397328.299999237,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397390.000000596,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397448.5999941826,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397502.1999925375,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397544.7999984026,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397588.100001216,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397636.5000009537,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397685.2000057697,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397729.5999974012,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397783.1999957561,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397828.1999975443,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397889.4999921322,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1397935.5999976397,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1397983.5000038147,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398032.9999923706,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398090.5999988317,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398135.9999924898,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398194.7000026703,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398240.1999980211,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398290.0999933481,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398343.8999950886,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398391.1000043154,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398431.2999993563,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398477.4000048637,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398515.399992466,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398561.1000061035,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398600.8999943733,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398643.2999968529,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398690.9999996424,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398731.7000031471,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398770.300000906,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398821.1999982595,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398865.0999963284,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1398912.699997425,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1398964.4999951124,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1399032.3999971151,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1399077.3999989033,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1399126.4999955893,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1399171.2999939919,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1399221.20000422,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1399267.100006342,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1399314.1999989748,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1399360.400006175,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1399412.7999991179,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1402578.5000026226,"name":"event","s":"g","args":{"eventName":"configFileDiag"}},
{"pid":1,"tid":1,"ph":"E","cat":"session","ts":1403605.7000011206,"name":"executeCommand","args":{"seq":1,"command":"updateOpen"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1403664.1000062227,"name":"response","s":"g","args":{"seq":1,"command":"updateOpen","success":true}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1411963.4999930859,"name":"request","s":"g","args":{"seq":2,"command":"geterrForProject"}},
{"pid":1,"tid":1,"ph":"B","cat":"session","ts":1412031.2000066042,"name":"executeCommand","args":{"seq":2,"command":"geterrForProject"}},
{"pid":1,"tid":1,"ph":"E","cat":"session","ts":1413084.399998188,"name":"executeCommand","args":{"seq":2,"command":"geterrForProject"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1413132.1000009775,"name":"response","s":"g","args":{"seq":2,"command":"geterrForProject","success":false}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1414351.0999977589,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1415303.4999966621,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1416402.8999954462,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1428178.599998355,"name":"checkExpression","dur":2938.0000084638596,"args":{"kind":207,"pos":188,"end":1745}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1438248.8999962807,"name":"checkExpression","dur":2513.0999982357025,"args":{"kind":222,"pos":78,"end":116}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1433519.1999971867,"name":"checkExpression","dur":7331.599995493889,"args":{"kind":207,"pos":65,"end":117}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1431402.7999937534,"name":"checkExpression","dur":9504.700005054474,"args":{"kind":207,"pos":160,"end":187}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1431263.6000066996,"name":"checkDeferredNode","dur":9694.699987769127,"args":{"kind":213,"pos":153,"end":187}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1448672.7000027895,"name":"checkExpression","dur":1661.1000001430511,"args":{"kind":220,"pos":1150,"end":1174}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1448643.2999968529,"name":"checkExpression","dur":1920.2000051736832,"args":{"kind":221,"pos":1150,"end":1192}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1440991.500005126,"name":"checkDeferredNode","dur":13985.39999127388,"args":{"kind":213,"pos":191,"end":1742}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1455091.9999927282,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1455407.6000005007,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1415549.500003457,"name":"stepAction","dur":40012.19999790192,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1458294.4999933243,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1458743.499994278,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1459299.1999983788,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1459957.1000039577,"name":"checkVariableDeclaration","dur":332.6999992132187,"args":{"kind":253,"pos":294,"end":327}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1462066.6999965906,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1462146.9999998808,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1459033.9999943972,"name":"stepAction","dur":3218.199998140335,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1474039.800003171,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1474543.9999997616,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1475071.9999969006,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1479261.1999958754,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1479337.0999991894,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1490131.4000040293,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1489589.1000032425,"name":"stepAction","dur":696.8999952077866,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1490597.399994731,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1491131.500005722,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1496079.1999995708,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1496154.8999994993,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1506029.6999961138,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1506641.6999995708,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1507156.4999967813,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1507591.29999578,"name":"checkExpression","dur":3740.900009870529,"args":{"kind":79,"pos":81,"end":89}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1507585.8000069857,"name":"checkExpression","dur":3866.099998354912,"args":{"kind":205,"pos":81,"end":94}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1507514.599993825,"name":"checkExpression","dur":4175.900012254715,"args":{"kind":206,"pos":81,"end":97}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1507407.9999923706,"name":"checkVariableDeclaration","dur":4383.700013160706,"args":{"kind":253,"pos":72,"end":97}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518292.999997735,"name":"checkExpression","dur":4803.599998354912,"args":{"kind":79,"pos":319,"end":327}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518289.4999980927,"name":"checkExpression","dur":4896.200001239777,"args":{"kind":205,"pos":319,"end":335}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518282.2999954224,"name":"checkExpression","dur":5082.400009036064,"args":{"kind":207,"pos":319,"end":351}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518245.8000034094,"name":"checkExpression","dur":5194.1999942064285,"args":{"kind":203,"pos":289,"end":352}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518238.600000739,"name":"checkExpression","dur":5382.699996232986,"args":{"kind":205,"pos":289,"end":359}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518226.9999980927,"name":"checkExpression","dur":6780.900001525879,"args":{"kind":207,"pos":289,"end":365}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1518146.899998188,"name":"checkExpression","dur":7005.199998617172,"args":{"kind":207,"pos":260,"end":402}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1517835.0999951363,"name":"checkVariableDeclaration","dur":7371.800005435944,"args":{"kind":253,"pos":251,"end":402}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1525252.4999976158,"name":"checkExpression","dur":5549.199998378754,"args":{"kind":79,"pos":403,"end":416}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1525250.5999952555,"name":"checkExpression","dur":5639.400005340576,"args":{"kind":205,"pos":403,"end":421}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1525244.1000044346,"name":"checkExpression","dur":5794.7999984025955,"args":{"kind":207,"pos":403,"end":436}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1531493.6999976635,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1531569.1999942064,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1506960.4000002146,"name":"stepAction","dur":24775.80000460148,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1537749.5000064373,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1538362.399995327,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1579974.7000038624,"name":"checkExpression","dur":33.89999270439148,"args":{"kind":79,"pos":6166,"end":6172}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1579971.7999994755,"name":"checkExpression","dur":148.20000529289246,"args":{"kind":205,"pos":6166,"end":6180}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1675401.0999947786,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1675517.1999931335,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1538118.3999925852,"name":"stepAction","dur":137555.40001392365,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1686440.400004387,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1686541.0999953747,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1694283.70000422,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1675922.8000044823,"name":"stepAction","dur":18603.10000181198,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1697484.7999960184,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1697730.0000041723,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1697877.4999976158,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1697968.7999933958,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1698311.5999996662,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1698373.6000061035,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1698438.6000037193,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1713490.0999963284,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1713765.399992466,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1713824.1000026464,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1713875,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1714083.0000042915,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":1714117.8999990225,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1714147.5999951363,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":1729540.7000035048,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":1729881.6999942064,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":1878628.4999996424,"name":"checkVariableDeclaration","dur":1688.500002026558,"args":{"kind":253,"pos":124372,"end":124447}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":2179999.6999949217,"name":"checkExpression","dur":0.30000507831573486,"args":{"kind":10,"pos":192536,"end":192547}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":2199999.7999966145,"name":"checkExpression","dur":0.30000507831573486,"args":{"kind":10,"pos":193169,"end":193185}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":2579804.800003767,"name":"checkVariableDeclaration","dur":1393.1999951601028,"args":{"kind":253,"pos":670367,"end":681612}},
{"pid":1,"tid":1,"ph":"X","cat":"check","ts":2617518.8000053167,"name":"checkVariableDeclaration","dur":2744.299992918968,"args":{"kind":253,"pos":767302,"end":767354}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2630019.7000056505,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2630182.4000030756,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":1729826.1000066996,"name":"stepAction","dur":900470.6999957561,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2677302.399992943,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2677370.3999966383,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2711351.6000062227,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2631127.900004387,"name":"stepAction","dur":80817.49999523163,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2713706.0000002384,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2713925.9999990463,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2720999.3000030518,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2721099.0999937057,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2713893.0000066757,"name":"stepAction","dur":7355.89998960495,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2723121.1999952793,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2723201.000005007,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2727206.599995494,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2729183.6999952793,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2729457.9000025988,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2729614.1999959946,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2729691.6999965906,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2730084.499999881,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2730186.8000030518,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2730223.4999984503,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2745195.199996233,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2745432.19999969,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2749358.300000429,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2749436.8000030518,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2749752.399995923,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2749787.4999940395,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2749990.7999932766,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2749606.80000484,"name":"stepAction","dur":488.6000007390976,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2750234.899997711,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2750415.2999967337,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2752769.799992442,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2752838.5999947786,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2753164.3999964,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2753198.899999261,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2753283.999994397,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2761090.399995446,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2761294.4000065327,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2764041.8999940157,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2764103.000000119,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2764376.8000006676,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2764410.9999984503,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2764467.500001192,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2777098.9000052214,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2777285.699993372,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2778888.9999985695,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2778950.100004673,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2779171.700000763,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2779205.5999934673,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2779245.7000017166,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2793189.999997616,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2793603.5999953747,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2800536.7999970913,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2800598.600000143,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2793580.0999999046,"name":"stepAction","dur":7105.399996042252,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2801018.3999985456,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2801051.599994302,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2801190.0999993086,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2809268.999993801,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2809472.399994731,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2811520.199999213,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2811581.7999988794,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2809445.8000063896,"name":"stepAction","dur":2215.599998831749,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2811850.0999957323,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2811880.6000053883,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2811920.900002122,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2825407.6000005007,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2825597.000002861,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2826516.8000012636,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2826571.1999982595,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2826801.7999976873,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2826833.599999547,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2826883.599996567,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2841285.0999981165,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2841488.299995661,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2842149.4999974966,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2842203.5000026226,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2842443.9000040293,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2842474.000006914,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2842512.199997902,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2857261.1999958754,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2857426.599994302,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2857806.7000061274,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2857858.5000038147,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2858074.200004339,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2858103.900000453,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2858147.9000002146,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2873355.2999943495,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2873946.400001645,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2877144.1999971867,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2877231.9000065327,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2877594.6999937296,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2877628.600001335,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2877701.9000053406,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2889167.4000024796,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2889540.9000068903,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2890187.600001693,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2890249.3000030518,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"X","cat":"session","ts":2889510.3999972343,"name":"stepAction","dur":820.8000063896179,"args":{"seq":2}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2890505.4000020027,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2890536.7999970913,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2890583.2999944687,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2904299.7000068426,"name":"event","s":"g","args":{"eventName":"syntaxDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2904483.5000038147,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2904533.3999991417,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2904577.8000056744,"name":"event","s":"g","args":{"eventName":"semanticDiag"}},
{"pid":1,"tid":1,"ph":"B","cat":"check","ts":2904756.799995899,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"E","cat":"check","ts":2904787.5999957323,"name":"checkSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2904824.1000026464,"name":"event","s":"g","args":{"eventName":"suggestionDiag"}},
{"pid":1,"tid":1,"ph":"I","cat":"session","ts":2904952.500000596,"name":"event","s":"g","args":{"eventName":"requestCompleted"}}
]

semantics

[
    {"name":"process_name","args":{"name":"tsc"},"cat":"__metadata","ph":"M","ts":306888.1999999285,"pid":1,"tid":1},
    {"name":"thread_name","args":{"name":"Main"},"cat":"__metadata","ph":"M","ts":306888.1999999285,"pid":1,"tid":1},
    {"name":"TracingStartedInBrowser","cat":"disabled-by-default-devtools.timeline","ph":"M","ts":306888.1999999285,"pid":1,"tid":1},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":319841.6000008583,"name":"event","s":"g","args":{"eventName":"typingsInstallerPid"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":321890.6999975443,"name":"request","s":"g","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":322187.79999017715,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":323051.499992609,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":323180.3999990225,"name":"response","s":"g","args":{"seq":0,"command":"configure","success":false}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":323304.3999969959,"name":"request","s":"g","args":{"seq":1,"command":"compilerOptionsForInferredProjects"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":323385.099992156,"name":"executeCommand","args":{"seq":1,"command":"compilerOptionsForInferredProjects"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":323741.2000000477,"name":"executeCommand","args":{"seq":1,"command":"compilerOptionsForInferredProjects"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":323790.9999936819,"name":"response","s":"g","args":{"seq":1,"command":"compilerOptionsForInferredProjects","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":323877.9999911785,"name":"request","s":"g","args":{"seq":2,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":323934.1000020504,"name":"executeCommand","args":{"seq":2,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":328762.40000128746,"name":"event","s":"g","args":{"eventName":"projectLoadingStart"}},
    {"pid":1,"tid":1,"ph":"B","cat":"program","ts":464279.49999272823,"name":"createProgram","args":{"configFilePath":"c:/react-native-tizen-dotnet/tsconfig.json","rootDir":"c:/react-native-tizen-dotnet/src"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":467047.49999940395,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":476781.09999001026,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":488610.3999912739,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":490372.0999956131,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":488558.10000002384,"name":"findSourceFile","dur":3754.1999965906143,"args":{"fileName":"c:/react-native-tizen-dotnet/src/utlis.js","fileIncludeKind":"Import"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":465686.39999628067,"name":"findSourceFile","dur":26683.50000679493,"args":{"fileName":"c:/react-native-tizen-dotnet/src/bundle.js","fileIncludeKind":"RootFile"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":492455.89999854565,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":493785.8999967575,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":495802.6999980211,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":497687.79999017715,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":497877.1999925375,"name":"resolveModuleNamesWorker","dur":3267.8000032901764,"args":{"containingFileName":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":495781.99999034405,"name":"findSourceFile","dur":5484.900012612343,"args":{"fileName":"c:/react-native-tizen-dotnet/src/package.js","fileIncludeKind":"RootFile"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":501570.6999897957,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":503625.59999525547,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":465360.49999296665,"name":"processRootFiles","dur":41528.50000560284,"args":{"count":5}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":508706.4999938011,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":509770.300000906,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":511864.8999929428,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":512277.79999375343,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":514192.1999901533,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":514628.60000133514,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":517158.60000252724,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":684508.0000013113,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":516037.39999234676,"name":"findSourceFile","dur":168763.0999982357,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":688602.7999967337,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":709638.0999982357,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":687573.7999975681,"name":"findSourceFile","dur":22226.199999451637,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":712147.299990058,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":714195.5000013113,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":716387.5000029802,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":729406.4999967813,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":731936.9999915361,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":732350.2999991179,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":715803.8999885321,"name":"findSourceFile","dur":16637.800008058548,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":734423.3999997377,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":735731.9999933243,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":741796.1999922991,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":743323.7999975681,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":746524.2999941111,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":747696.1999982595,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":749730.1999926567,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":754055.2999973297,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":749208.3999961615,"name":"findSourceFile","dur":4980.000004172325,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":760956.5999954939,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":772619.8000013828,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":760209.799990058,"name":"findSourceFile","dur":15016.699999570847,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":513680.8999925852,"name":"findSourceFile","dur":261641.30000770092,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":779000.5999952555,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":781200.5999982357,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":778206.0000002384,"name":"findSourceFile","dur":3104.099988937378,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":511313.19999694824,"name":"findSourceFile","dur":270077.6000022888,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":787295.5999970436,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1094128.4999996424,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":783451.6000002623,"name":"findSourceFile","dur":311381.20000064373,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1097050.300002098,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1097225.999996066,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1099334.6000015736,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1103881.5999925137,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":1098675.3999888897,"name":"findSourceFile","dur":5376.5000104904175,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":1108288.6999994516,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":1113686.1999928951,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":1107024.9999910593,"name":"findSourceFile","dur":6756.500005722046,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":507462.0999991894,"name":"findSourceFile","dur":606369.1999912262,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts","isDefaultLib":true,"fileIncludeKind":"LibFile"}},
    {"pid":1,"tid":1,"ph":"E","cat":"program","ts":1117527.599990368,"name":"createProgram","args":{"configFilePath":"c:/react-native-tizen-dotnet/tsconfig.json","rootDir":"c:/react-native-tizen-dotnet/src"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1124434.2999905348,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1186899.7000008821,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1186972.399994731,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1187036.5999937057,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1187066.7999982834,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1187102.7999967337,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1187128.2999962568,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1323421.3999956846,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1323493.7999993563,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1329467.3999994993,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1329536.6999953985,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1329631.499990821,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1329690.4999911785,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1332138.3000016212,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1332214.3999934196,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1335594.200000167,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1335673.699989915,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1337435.0999891758,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1337522.299990058,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1338184.4999939203,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1338266.599997878,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1342066.3999915123,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1342135.60000062,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1344480.899989605,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1344544.6999967098,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1345023.49999547,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1345064.899995923,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1345751.2999922037,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1345793.2000011206,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1345921.4999973774,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1345951.7999887466,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1346962.599992752,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1347002.8000026941,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1348041.5999889374,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1348141.199991107,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1348184.199988842,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1348210.5000019073,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1350313.5999888182,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1350356.4999997616,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1352914.4999980927,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1352961.4000022411,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1353900.7000029087,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1353943.4999972582,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1354633.499994874,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1354671.3999956846,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1355147.9000002146,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":1400267.8000032902,"name":"event","s":"g","args":{"eventName":"projectLoadingFinish"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":1401286.6999953985,"name":"event","s":"g","args":{"eventName":"telemetry"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402320.0999945402,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402408.8999927044,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402468.8999950886,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402523.9000022411,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402567.6999986172,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402608.0999970436,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402645.4000025988,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402689.499989152,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402729.0999889374,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402773.49999547,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402811.9999915361,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402855.7000011206,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402899.1999924183,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1402938.699990511,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1402974.399998784,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403016.2999927998,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.core.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403059.4999939203,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403101.0999977589,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.collection.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403143.9999938011,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403186.4999979734,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.generator.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403224.399998784,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403269.9999958277,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.iterable.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403306.5999895334,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403347.9000031948,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.promise.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403385.60000062,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403427.9000014067,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.proxy.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403471.1000025272,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403511.6000026464,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.reflect.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403547.1999943256,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403595.299988985,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403632.1000009775,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403671.199992299,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403712.8999978304,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403752.2999942303,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.array.include.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403788.9999896288,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403834.799990058,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es2016.full.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403876.199990511,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1403927.000001073,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/utlis.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1403968.4000015259,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1404011.399999261,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1404052.29999125,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1404096.3999927044,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/launch.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1404132.2000026703,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1404175.7999956608,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/package.js"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1404225.6999909878,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1404261.0999941826,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bin/react-native-tizen-scripts.js"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":1406017.8000032902,"name":"event","s":"g","args":{"eventName":"configFileDiag"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":1406649.299994111,"name":"executeCommand","args":{"seq":2,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":1406697.4999904633,"name":"response","s":"g","args":{"seq":2,"command":"updateOpen","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73563229.80000079,"name":"request","s":"g","args":{"seq":3,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73563338.79999816,"name":"executeCommand","args":{"seq":3,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73610587.59999275,"name":"executeCommand","args":{"seq":3,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73610675.79999566,"name":"response","s":"g","args":{"seq":3,"command":"getApplicableRefactors","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73611635.8999908,"name":"request","s":"g","args":{"seq":4,"command":"projectInfo"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73611684.49999392,"name":"executeCommand","args":{"seq":4,"command":"projectInfo"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73611817.00000167,"name":"executeCommand","args":{"seq":4,"command":"projectInfo"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73611856.79998994,"name":"response","s":"g","args":{"seq":4,"command":"projectInfo","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73652905.29999137,"name":"request","s":"g","args":{"seq":5,"command":"encodedSemanticClassifications-full"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73652978.00000012,"name":"executeCommand","args":{"seq":5,"command":"encodedSemanticClassifications-full"}},
    {"pid":1,"tid":1,"ph":"X","cat":"check","ts":73655825.39999485,"name":"checkExpression","dur":6645.199999213219,"args":{"kind":213,"pos":153,"end":187}},
    {"pid":1,"tid":1,"ph":"X","cat":"check","ts":73669304.49999869,"name":"checkExpression","dur":981.3999980688095,"args":{"kind":205,"pos":568,"end":583}},
    {"pid":1,"tid":1,"ph":"X","cat":"check","ts":73668926.5999943,"name":"checkExpression","dur":1613.3999973535538,"args":{"kind":207,"pos":568,"end":588}},
    {"pid":1,"tid":1,"ph":"X","cat":"check","ts":73689899.19999242,"name":"checkExpression","dur":1801.2000024318695,"args":{"kind":203,"pos":1725,"end":1735}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73692879.29999828,"name":"executeCommand","args":{"seq":5,"command":"encodedSemanticClassifications-full"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73692929.79998887,"name":"response","s":"g","args":{"seq":5,"command":"encodedSemanticClassifications-full","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73776561.89998984,"name":"request","s":"g","args":{"seq":6,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73776651.89999342,"name":"executeCommand","args":{"seq":6,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73777249.09999967,"name":"executeCommand","args":{"seq":6,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73777424.40000176,"name":"response","s":"g","args":{"seq":6,"command":"configure","success":false}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73778535.69999337,"name":"request","s":"g","args":{"seq":7,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73778775.99999309,"name":"executeCommand","args":{"seq":7,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73781162.29999065,"name":"executeCommand","args":{"seq":7,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73781216.19999409,"name":"response","s":"g","args":{"seq":7,"command":"getApplicableRefactors","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":75772873.40000272,"name":"request","s":"g","args":{"seq":8,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":75772949.7999996,"name":"executeCommand","args":{"seq":8,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":75773478.39999199,"name":"executeCommand","args":{"seq":8,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":75773519.79999244,"name":"response","s":"g","args":{"seq":8,"command":"getApplicableRefactors","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":75830980.70000112,"name":"request","s":"g","args":{"seq":9,"command":"documentHighlights"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":75831050.59999228,"name":"executeCommand","args":{"seq":9,"command":"documentHighlights"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":75833094.20000017,"name":"executeCommand","args":{"seq":9,"command":"documentHighlights"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":75833141.09998941,"name":"response","s":"g","args":{"seq":9,"command":"documentHighlights","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76083814.89999592,"name":"request","s":"g","args":{"seq":10,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":76083887.99999654,"name":"executeCommand","args":{"seq":10,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":76084426.699996,"name":"executeCommand","args":{"seq":10,"command":"getApplicableRefactors"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76084468.89999509,"name":"response","s":"g","args":{"seq":10,"command":"getApplicableRefactors","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76253453.89999449,"name":"request","s":"g","args":{"seq":11,"command":"quickinfo"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":76253526.79999173,"name":"executeCommand","args":{"seq":11,"command":"quickinfo"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":76254051.10000074,"name":"executeCommand","args":{"seq":11,"command":"quickinfo"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76254096.00000083,"name":"response","s":"g","args":{"seq":11,"command":"quickinfo","success":false}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76315245.8999902,"name":"request","s":"g","args":{"seq":12,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":76315308.4999919,"name":"executeCommand","args":{"seq":12,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":76316027.79999375,"name":"executeCommand","args":{"seq":12,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76316075.59999824,"name":"response","s":"g","args":{"seq":12,"command":"definitionAndBoundSpan","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76994969.20000017,"name":"request","s":"g","args":{"seq":13,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":76995040.39999843,"name":"executeCommand","args":{"seq":13,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":76995959.60000157,"name":"executeCommand","args":{"seq":13,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":76996026.99999511,"name":"response","s":"g","args":{"seq":13,"command":"definitionAndBoundSpan","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":77888478.39999199,"name":"request","s":"g","args":{"seq":14,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":77888564.69999254,"name":"executeCommand","args":{"seq":14,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":77888777.40000188,"name":"executeCommand","args":{"seq":14,"command":"definitionAndBoundSpan"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":77888815.3000027,"name":"response","s":"g","args":{"seq":14,"command":"definitionAndBoundSpan","success":true}}
]

syntax

[
    {"name":"process_name","args":{"name":"tsc"},"cat":"__metadata","ph":"M","ts":310727.70000994205,"pid":1,"tid":1},
    {"name":"thread_name","args":{"name":"Main"},"cat":"__metadata","ph":"M","ts":310727.70000994205,"pid":1,"tid":1},
    {"name":"TracingStartedInBrowser","cat":"disabled-by-default-devtools.timeline","ph":"M","ts":310727.70000994205,"pid":1,"tid":1},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":314708.2000076771,"name":"request","s":"g","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":314897.6000100374,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":315900.90000629425,"name":"executeCommand","args":{"seq":0,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":315983.4000021219,"name":"response","s":"g","args":{"seq":0,"command":"configure","success":false}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":316039.30000960827,"name":"request","s":"g","args":{"seq":1,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":316077.1000087261,"name":"executeCommand","args":{"seq":1,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"B","cat":"program","ts":323401.000007987,"name":"createProgram","args":{}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":325200.80000162125,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":337960.2999985218,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":324475.29999911785,"name":"findSourceFile","dur":22836.500003933907,"args":{"fileName":"c:/react-native-tizen-dotnet/src/bundle.js","fileIncludeKind":"RootFile"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":324246.1000084877,"name":"processRootFiles","dur":23143.09999346733,"args":{"count":1}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":348504.2999982834,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":349910.7000082731,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":352509.2000067234,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":512660.8000099659,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":351594.2000001669,"name":"findSourceFile","dur":161368.2000041008,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":518571.8000084162,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":813083.4999978542,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":515270.6000059843,"name":"findSourceFile","dur":299714.9000018835,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts","isDefaultLib":true,"fileIncludeKind":"LibReferenceDirective"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":818769.8000073433,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":818981.2000095844,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":820982.200011611,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":823859.9000126123,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"X","cat":"program","ts":347508.9000016451,"name":"findSourceFile","dur":476450.30000805855,"args":{"fileName":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.d.ts","isDefaultLib":true,"fileIncludeKind":"LibFile"}},
    {"pid":1,"tid":1,"ph":"E","cat":"program","ts":825376.9000023603,"name":"createProgram","args":{}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":832395.300000906,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":833374.0999996662,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":833419.9000000954,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":899976.50000453,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.es5.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":900075.5000114441,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1072754.2999982834,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.dom.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1072881.099998951,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1072949.7999995947,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1072980.0000041723,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1074322.200000286,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/.yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript/lib/lib.scripthost.d.ts"}},
    {"pid":1,"tid":1,"ph":"B","cat":"bind","ts":1074371.000006795,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"bind","ts":1078709.1000080109,"name":"bindSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":1086554.3000102043,"name":"executeCommand","args":{"seq":1,"command":"updateOpen"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":1086623.9999979734,"name":"response","s":"g","args":{"seq":1,"command":"updateOpen","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73727172.40001261,"name":"request","s":"g","args":{"seq":2,"command":"getOutliningSpans"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73727248.99999797,"name":"executeCommand","args":{"seq":2,"command":"getOutliningSpans"}},
    {"pid":1,"tid":1,"ph":"B","cat":"parse","ts":73727706.79999888,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"parse","ts":73729365.19999802,"name":"createSourceFile","args":{"path":"c:/react-native-tizen-dotnet/src/bundle.js"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73733590.40001035,"name":"executeCommand","args":{"seq":2,"command":"getOutliningSpans"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73733644.1000104,"name":"response","s":"g","args":{"seq":2,"command":"getOutliningSpans","success":true}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73787755.00001013,"name":"request","s":"g","args":{"seq":3,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"B","cat":"session","ts":73787844.00001168,"name":"executeCommand","args":{"seq":3,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"E","cat":"session","ts":73788437.10000813,"name":"executeCommand","args":{"seq":3,"command":"configure"}},
    {"pid":1,"tid":1,"ph":"I","cat":"session","ts":73788517.80000329,"name":"response","s":"g","args":{"seq":3,"command":"configure","success":false}}
]

Repository for reproduction: https://github.com/Samsung/react-native-tizen-dotnet

@ClassicDarkChocolate
Copy link

ClassicDarkChocolate commented Dec 4, 2021

@Luiz-Monad

https://yarnpkg.com/getting-started/editor-sdks

Note: Be aware that only the SDKs for the tools present in your root package.json will be installed (the tool won't look at the dependencies from your other workspaces). So don't forget to run the command again should you change the set of tools used by your project!

yarn set version berry
yarn add typescript
yarn dlx @yarnpkg/sdks vscode # do this 'AFTER' adding the dependency

And, the yarn plugin typescript you add is for

  • Automatically adds @types/ packages into your dependencies when you add a package that doesn't include its own types
  • Adds support for types to publishConfig (same behavior as publishConfig.bin)

@Luiz-Monad
Copy link

Luiz-Monad commented Dec 4, 2021

Nope, it makes no difference.

Oh it obviously don't work with pnp, but it works with pnpm, which creates symbolic links.
https://yarnpkg.com/configuration/yarnrc#nodeLinker

That's less bad.

Ah, it works as long as I have a cache on %AppData%\Local\Microsoft\TypeScript\4.6\node_modules\@types\. It still doesn't work with pnp. That's why it looks like it works some times.

Typescript server is using npm to pull the dependencies, it will fail when I start using portals, links, or any of the newer Yarn2 features, for example.

@ClassicDarkChocolate
Copy link

@Luiz-Monad

Do you have this in your vscode workspace settings.json?

{
  "typescript.tsdk": ".yarn/sdks/typescript/lib"
}

@ClassicDarkChocolate
Copy link

@Luiz-Monad

Did you choose allow when vscode ask you this?

I just create a new empty project, and all work perfectly fine for me.

@Luiz-Monad
Copy link

Luiz-Monad commented Dec 4, 2021

Yes, I did choose it before. [edit: it worked because I deleted the tsconfig.json]

  12        0.055 rm -Recurse -Force C:\Users\LuizMonad\AppData\Local\Microsoft\TypeScript\4.5\node_modules\@types
  13        0.002 rm .\.pnp.cjs
  14        0.006 rm .\.yarnclean
  15        0.002 rm .\.yarnrc.yml
  16        0.331 rm .\.yarn\ -Recurse -Force
  17        1.595 yarn set version berry
  18        5.203 yarn add typescript@next --dev
  21        7.311 yarn dlx @yarnpkg/sdks vscode

And even my portal worked !
Thanks.

(I noticed that I don't have a tsconfig.json anymore, I nuked it, that may be a problem in the future, I have those 2 reasons to look at, I'll find later if I need to port this to typescript, and after I forget to close the C#/native part)

End result: may be useful for someone to look at the config: https://github.com/Luiz-Monad/react-native-tizen-dotnet

@ClassicDarkChocolate
Copy link

ClassicDarkChocolate commented Dec 4, 2021

@Luiz-Monad I just checked your reproduction steps again. There is 1 wrong config there:

{
  "typescript.tsdk": ".yarn/unplugged/typescript-patch-017af296e3/node_modules/typescript"
}

You should not unplug the typescript package and use that as your sdk version, and also that's the wrong path without "/lib" (doesn't matter though). Yarn use its own from ".yarn/sdks/typescript/lib".

@Luiz-Monad
Copy link

Luiz-Monad commented Dec 4, 2021

I though it would solve the problem. (nope, didn't make it any better or worse)
But I figured out and isolated one of the causes of problem. I should not have added a "tsconfig", even if its just empty.
Also, the next typescript version (nightly) don't seem to ever work whatsoever, so there's some regression there.
Unplugging or not doesn't change a thing.

@arcanis
Copy link
Author

arcanis commented Dec 4, 2021

Please don't make Yarn support requests on the VSCode tracker, this is derailing the actual topic ("Builtin support for reading files from their zip archives" - nothing about Yarn inside). We have a Discord for support, and a repository for bug reports.

@Luiz-Monad
Copy link

Luiz-Monad commented Dec 4, 2021

Sorry, its because I thought the source of the bug was the Zip archive feature, I had to begin somewhere.
Its actually the Typescript language server that's causing the problem, just look at the logs.
The bug was a bit confusing because the cache folder wasn't being populated from the zip files, and I though the culprit was the zip archive feature, but it indeed does work.
I don't know how the infrastructure works, I just made a guess, sorry about derailing your topic.

@madhead
Copy link

madhead commented Jan 20, 2022

After you do yarn dlx @yarnpkg/sdks vscode Yarn will add a line to the .vscode/extensions.json:

{
  "recommendations": [
    "arcanis.vscode-zipfs"
  ]
}

Make sure to install this recommendation. Actually, VS Code should prompt you to install it, don't skip this step!

@sin-to-jin
Copy link

I typed this sdk command (https://yarnpkg.com/getting-started/editor-sdks) and installed the ZipFS (https://marketplace.visualstudio.com/items?itemName=arcanis.vscode-zipfs) and it worked.

@asdfghjklasssdf
Copy link

it shows error of
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Windows\System32\WindowsPowerShell\v1.0\package.json
npm ERR! errno -4058
npm ERR! enoent Could not read package.json: Error: ENOENT: no such file or directory, open 'C:\Windows\System32\WindowsPowerShell\v1.0\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! A complete log of this run can be found in: C:\Users\Upendra Kumar Singh\AppData\Local\npm-cache_logs\2024-01-26T05_15_00_343Z-debug-0.log

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request Request for new features or functionality file-explorer Explorer widget issues
Projects
None yet
Development

No branches or pull requests