YAML build issue
Describe the bug
Facing build issue while building YAML extension with latest YAML language server 1.9.0
Expected Behavior
There should not be any error
Current Behavior
The below error appears:

Steps to Reproduce
- yarn build
Environment
- [x] Windows
what change introduced that issue?
what change introduced that issue?
I couldn't able to compile the extension in local and got the above mentioned error. The replace() is missing in the TelemeteryOutputChannel seems
something's fishy here. I can compile the main branch with node 14.20.0 and yarn build without issue
I checked on mac and linux
I am using windows machine. Node v16.13.0 and Yarn v1.22.17
cleared the node modules and tried again, now the build got success. Hence closing this issue.
so by default, yarn resolves @types/vscode to 1.61, which doesn't have the replace function, but if you force @types/vscode to 1.69, then replace() is needed. I don't know when it was introduced
it starts breaking with @types/vscode 1.62
Better it is good to have the replace() in telemetry. Shall I reopen the issue in that case?
So the change was introduced by https://github.com/microsoft/vscode/issues/132183 I'd like to bump @types/vscode to 1.62 at least. However I'm not sure whether that would have a negative impact on Theia compatibility, which starts dramatically lagging behind vscode: https://eclipse-theia.github.io/vscode-theia-comparator/filtered-status.html
So adding the replace() function only is safe. Bumping @types/vscode version, I'm not too sure. @benoitf WDYT?
@fbricon shall I upgrade @types/vscode to 1.62 and further?
For Theia I think it's ok to bump to 1.62
And on Che/DevSpaces side, default editor will be VS Code so it's fine to bump