Hi I was trying my vscode extension which is a webview in theia browser … My extension uses global storage provided by vscode . Where is the location for the same in Theia?
[original thread by nitika sharma]
Hi I was trying my vscode extension which is a webview in theia browser … My extension uses global storage provided by vscode . Where is the location for the same in Theia?
[original thread by nitika sharma]
It should be in .theia folder under your user home.
ExtensionsContext#globalStorageLocation gives you a place to put state. Hardcoding the path is not the proper way to do it if you can avoid it.
[nitika sharma]
Thanks Anton, I found it.