DefinitelyTyped/DefinitelyTyped 29335
The repository for high quality TypeScript type definitions.
:zap: Delightful Node.js packages and resources
Learn OpenCV : C++ and Python Examples
Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
Recreating After Dark screensavers with CSS3.
VSCode extension that adds syntax highlighting for inline Angular2 templates.
mjbvz/Bracket-Pair-Colorizer-2 0
Bracket Colorizer Extension for VSCode
issue commentmicrosoft/vscode
Font display broken in Extensions detail view after upgrade to 1.36
Are you still seeing this issue in VS Code 1.47+? There's only be two upvotes on this over the past year
comment created time in 35 minutes
issue closedmicrosoft/vscode
select all doesn't work in extension description page
Testing #54892
Select All does nothing in Extension description page. I tried some of my webview extensions and select all doesn't work as well.
closed time in 36 minutes
rebornixissue commentmicrosoft/vscode
select all doesn't work in extension description page
Closing this as out of scope since there has been limited interest over the past two years
comment created time in 36 minutes
issue commentmicrosoft/vscode
TS Server fatal error: Debug Failure. False expression.
Please try to fill in the steps to reproduce
comment created time in 39 minutes
issue commentmicrosoft/vscode
Work environment configuration is required
/extPython
comment created time in 40 minutes
issue commentmicrosoft/vscode
npm start no reqonse.It's ok twice
Please provide a clear description of the problem
/needsMoreInfo
comment created time in 40 minutes
push eventmicrosoft/vscode
commit sha 4585a8cc1d58902fdf626797610ffeba9b89921c
Disable assertion around mailto The new version of marked encodes the uri differently that causes this test to fail
push time in 6 hours
issue closedmicrosoft/vscode
Extension change logs don't render markdown tables
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.12.2
- OS Version: Windows 10
Just published the newest version of my extension and the markdown tables in the change log aren't rendering, leaving changes unreadable.
Steps to Reproduce:

But when previewing the source from the source project vscode does render tables

closed time in 6 hours
pflanneryissue commentmicrosoft/vscode
Extension change logs don't render markdown tables
I just picked up a new version of marked which seems to fix this issue:

Let me know if there are cases where this is still not working as expected
comment created time in 6 hours
push eventmicrosoft/vscode
commit sha e54b6f5220e80ce3130e2c0f4995a3233c0754c3
Update marked to 1.1.0 This copies of marked. We also disable a console.warn about using santize since we already use `insane`
push time in 6 hours
issue closedmicrosoft/vscode
Allow to make edits to binary files
Hi
I am requesting that an option to open a file in the binary editor like in visual studio should be added into visual studio code
Thanks in Advance
closed time in 6 hours
06needhamtissue commentmicrosoft/vscode
Allow to make edits to binary files
The hex editor extension adds support for both viewing and editing binary files
Give it a try. If there any features you think are missing, please open new issues against that extension
comment created time in 6 hours
push eventmicrosoft/vscode-typescript-next
commit sha 89b44ee573484cafb7d3a75eab6804dbf27a8d1f
Publishing version bump ***NO_CI***
push time in 7 hours
issue commentmicrosoft/vscode
Open Webview with a specified Width
Can you share your used case?
comment created time in 7 hours
issue commentmicrosoft/vscode
Unable to autocomplete base class methods when trying to override them
yes, please share a specific code sample that shows this because I can't reproduce with the original example
comment created time in 7 hours
issue commentmicrosoft/vscode
I can't find the documentation about the codeActionsOnSave feature
Sure, that sounds good
comment created time in 7 hours
issue closedmicrosoft/vscode
Add codeActionsOnSave per language
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. --> When you work with multiple languages, there are also multiple linters that require some specific configurations. So in some cases I need to have codeActionsOnSave enabled and some cases don't. But actually this setting does not support per-language configuration. Would be nice to have support on paste per-language as we have support on save.

closed time in 7 hours
jramiresbritoissue commentmicrosoft/vscode
Add codeActionsOnSave per language
Please open a feature request for running code actions on paste (there may already be an issue tracking this).
Closing this since it looks like codeActionsOnSave is working as expected
comment created time in 7 hours
push eventmicrosoft/vscode
commit sha db40434f562994116e5b21c24015a2e40b2504e6
Add more specific checks for being on TS 4.0.1 (#104457) Fixes #104456
push time in 7 hours
PR merged microsoft/vscode
Fixes #104456
I believe the arguments to .gte were reversed previously. This caused us to always use the new command line arguments on older TS versions (which end up being silently ignored)
pr closed time in 7 hours
issue closedmicrosoft/vscode
Multiline comments may become non collapsible
- VSCode Version: 1.47.1 (system setup)
- OS Version: Windows_NT x64 10.0.19041
- Create a new file
- Insert:
#!/usr/bin/env nodejs
'use strict';
/*
This
multiline comment
is collapsible
*/
function test() { }
- Insert this line at line 8 (between comment and function)
const constTest = ''; - The multiline comment is no longer collapsible
The multiline comment is still collapsible when you create a new line at line 8 but the collapse token dissapeares as soon as you start typing
Does this issue occur when all extensions are disabled?: Yes
closed time in 7 hours
terje-rosenlundissue commentmicrosoft/vscode
Multiline comments may become non collapsible
Opened https://github.com/microsoft/TypeScript/issues/40010 to track upstream
comment created time in 7 hours
issue openedmicrosoft/TypeScript
GetOutliningSpans does not include comment for const
<!-- 🚨 STOP 🚨 STOP 🚨 STOP 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a bug, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps before logging an issue:
- Search: https://github.com/Microsoft/TypeScript/search?type=Issues
- Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ
Please fill in the entire template below. -->
<!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: typescript@next
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
TypeScript Version: 4.1.0-dev.20200811
<!-- Search terms you tried before logging this (so others can find this issue more easily) --> Search Terms:
- outline
- fold / folding
- getOutliningSpans
Code
/**
* a
*/
const b = '';
Expected behavior: An outline span for the comment is returned
Actual behavior: No outline spans returned
created time in 7 hours
push eventmicrosoft/vscode
commit sha b84660fa86af95b072853f1d6686cff8f4976c12
Add more specific checks for being on TS 4.0.1 Fixes #104456
push time in 7 hours
issue commentmicrosoft/vscode
Two full TS servers spawned for on TS 3.9.x
For verification, try the following cases:
- Using TS 3.9.7
- Using TS 4.0.1-rc
- Using TS@next
- Using an old TS version like 3.0
All should load the document symbols quickly even while the loading spinner is showing
comment created time in 7 hours
issue commentmicrosoft/vscode
Two full TS servers spawned for on TS 3.9.x
Seems like this was caused by #104123
comment created time in 7 hours
issue openedmicrosoft/vscode
Two full TS servers spawned for on TS 3.9.x
Issue Type: <b>Bug</b>
repo
-
npm i -g [email protected] -
Set your user tsdk to use this version, for example:
"typescript.tsdk": "/Users/matb/.nvm/versions/node/v12.14.0/lib/node_modules/typescript/lib" -
Now load the VS Code workspace (making sure you are using your user TS version)
-
Open a file in
srcand try getting the document outline
Bug Big delay.
This is because two full TS Servers are being spawned instead of a syntax only server + full server (see memory usage in screenshot):

VS Code version: Code - Insiders 1.48.0-insider (4c23fc22ced6d0c1f58215ce91ccd08d0c8a0006, 2020-08-11T10:13:04.551Z) OS version: Darwin x64 19.6.0
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>metal: disabled_off<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | 6, 6, 5 |
| Memory (System) | 32.00GB (3.02GB free) |
| Process Argv | -psn_0_42174518 |
| Screen Reader | no |
| VM | 14% |
</details> <!-- generated by issue reporter -->
created time in 7 hours
issue closedmicrosoft/vscode
OSS: Extension pages not loading in safari
Testing #83296
Repo
- Using safari
- View an extension page
Bug It doesn't load. See the errors:

closed time in 8 hours
mjbvzissue commentmicrosoft/vscode
OSS: Extension pages not loading in safari
Should be fixed in latest insiders (see linked issue)
comment created time in 8 hours
issue closedmicrosoft/vscode
Can't use keyboard shortcut to copy text from Extension pages
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.45.1
- OS Version: macOS Mojave (10.14.6)
Steps to Reproduce:
- Open the Extensions View.
- Open an Extension.
- Select some text (for instance, example code), and try to copy it with Cmd/Ctrl + C
<!-- Launch with code --disable-extensions to check. -->
Does this issue occur when all extensions are disabled?: Yes
You can copy from Extension pages if you use the Edit menu, but it doesn't seem to recognize the standard keyboard shortcuts. I've "copied" (using keyboard shortcuts) from an Extension page a few times in the past, and then immediately closed the page, only to have to find and re-open it when I try to paste and realize nothing is on my clipboard. It's a small issue, but can be a minor annoyance when you run into it.
closed time in 8 hours
ahouse101issue commentmicrosoft/vscode
Can't use keyboard shortcut to copy text from Extension pages
Seems like a duplicate of #86658. This should be fixed in VS code 1.48
comment created time in 8 hours
issue closedmicrosoft/vscode
Bundle TypeScript 4.0 with VS Code
Tracks bundling TypeScript 4.0 as the default version used for JS/TS IntelliSense.
closed time in 8 hours
mjbvzissue commentmicrosoft/vscode
Bundle TypeScript 4.0 with VS Code
We now include TS 4.0-rc in VS Code 1.49
comment created time in 8 hours
issue closedmicrosoft/vscode
Error running command workbench.actions.sync.editMachineName
Issue Type: <b>Bug</b>
Testing #103604
Repro
- On two instances of VS Code (A and B) with setting sync enabled
- Open the sync view on both
- Now try renaming machines on A
- Wait a moment. The B doesn't seem to sync the names (possibly a bug)
- Now try renaming the machines on B
Bug See the alert:
/Applications/Visual Studio Code - Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2988 Error running command workbench.actions.sync.editMachineName:
POST request 'https://vscode-sync.trafficmanager.net/v1/resource/machines' failed because of Precondition Failed (412). There is new data exists for this resource. Make the request again with latest data.. This is likely caused by the extension that contributes workbench.actions.sync.editMachineName.
VS Code version: Code - Insiders 1.48.0-insider (d13d2fc56da7a2f8bcad4256212db0661fcbba45, 2020-08-05T05:26:44.946Z) OS version: Darwin x64 19.6.0
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (16 x 2400) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>metal: disabled_off<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | 2, 2, 2 |
| Memory (System) | 32.00GB (0.71GB free) |
| Process Argv | --user-data-dir=./a/data --extension-dir=./a/extension |
| Screen Reader | no |
| VM | 14% |
</details> <!-- generated by issue reporter -->
closed time in 8 hours
mjbvzissue commentmicrosoft/vscode
Error running command workbench.actions.sync.editMachineName
Nope, I can't repo this anymore either. Seems to have either been fixed in the client or server
comment created time in 8 hours
issue commentmicrosoft/vscode
Hmm, that shows 0% cpu usage for every process which seems suspicious. Does process monitor show higher cpu usage when this happens?
Also what exactly do you mean by unresponsive? Can you provide a video/gif that shows this happening?
comment created time in 8 hours
issue commentmicrosoft/vscode
@dbaeumer Seems like there is a bug in the LSP, although it seems like this logs was added to work around a previous issue: https://github.com/microsoft/vscode-languageserver-node/blob/51cf328886b9bddb4d5eb72cde983872c5564084/client/src/common/protocolConverter.ts#L583
@jrieken For VS Code itself, would it make sense to trim the passed in range rather than falling back to use getPreviewRangeBasedOnIndentation for long lines? What do you think?
comment created time in 8 hours
issue commentmicrosoft/TypeScript
TS Server fatal error: path.replace is not a function
Similar error stack to #38164
comment created time in 8 hours
issue commentmicrosoft/vscode
VS Code doesn't open links with custom URL schema
Where are you clicking the link? In the file source or in the markdown preview?
comment created time in 10 hours
issue closedmicrosoft/vscode
Visual Studio Code Online to work on iPad Browser
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. --> VSC (opensource) already work on iPAD browser, However the VSC Codespaces online still does not run properly in on the iPAD browser (even using iOS Chrome and request for desktop site also doesn't work) can we enable that please.
closed time in 10 hours
yeufuiissue commentmicrosoft/vscode
Visual Studio Code Online to work on iPad Browser
Please file Codespaces issues here: https://github.com/MicrosoftDocs/vscodespaces
comment created time in 10 hours
issue commentmicrosoft/vscode
When saving files, VScode will remove all file content.
Are you sure this reproduces when extensions are disabled? Make sure to restart VS Code after disabling extensions
comment created time in 10 hours
issue closedmicrosoft/vscode
TS Server fatal error: Debug Failure.
Issue Type: <b>Bug</b>
❗️❗️❗️ Please fill in the sections below to help us diagnose the issue ❗️❗️❗️
TypeScript Version: 4.1.0-dev.20200809
Steps to reproduce crash 1. 2. 3.
TS Server Log Server logging disabled. To help us fix crashes like this, please enable logging by setting:
"typescript.tsserver.log": "verbose"
After enabling this setting, future crash reports will include the server log.
TS Server Error Stack
Error: Debug Failure.
at actualResolveModuleNamesWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:102665:161)
at resolveModuleNamesWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:102888:26)
at resolveModuleNamesReusingOldState (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103038:19)
at processImportedModules (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104461:35)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104197:17)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104431:21
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at processLibReferenceDirectives (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104426:16)
at findSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104194:21)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:85
at getSourceFileFromReferenceWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103993:34)
at processSourceFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:104026:13)
at processRootFile (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:103849:13)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:102766:60
at Object.forEach (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:188:30)
at Object.createProgram (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:102766:16)
at synchronizeHostData (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:143379:26)
at Proxy.getProgram (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:143471:13)
at ConfiguredProject.Project.updateGraphWorker (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:148328:53)
at ConfiguredProject.Project.updateGraph (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:148261:42)
at ConfiguredProject.updateGraph (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:149195:63)
at ProjectService.createLoadAndUpdateConfiguredProject (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:150899:25)
at ProjectService.assignProjectToOpenedScriptInfo (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:151806:44)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:152133:97
at Object.flatMap (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:513:25)
at ProjectService.applyChangesInOpenFiles (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:152133:41)
at Session.handlers.ts.Map.ts.getEntries._a.<computed> (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:153152:46)
at /Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:155024:88
at IOSession.Session.executeWithRequestId (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:155015:28)
at IOSession.Session.executeCommand (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:155024:33)
at IOSession.Session.onMessage (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:155048:35)
at Interface.<anonymous> (/Users/ransfordarthurjr/.vscode/extensions/ms-vscode.vscode-typescript-next-4.1.20200809/node_modules/typescript/lib/tsserver.js:157264:27)
at Interface.emit (events.js:203:13)
at Interface._onLine (readline.js:316:10)
at Interface._normalWrite (readline.js:461:12)
at Socket.ondata (readline.js:172:10)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
VS Code version: Code 1.47.3 (91899dcef7b8110878ea59626991a18c8a6a1b3e, 2020-07-23T13:08:29.692Z) OS version: Darwin x64 19.5.0
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz (8 x 2900) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>metal: disabled_off<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | 5, 4, 3 |
| Memory (System) | 16.00GB (0.47GB free) |
| Process Argv | |
| Screen Reader | no |
| VM | 0% |
</details><details><summary>Extensions (57)</summary>
| Extension | Author (truncated) | Version |
|---|---|---|
| vscode-tomcat | ada | 0.11.3 |
| node-essentials | afr | 1.1.0 |
| ng-template | Ang | 0.1000.7 |
| vscode-icontheme-nomo-dark | be5 | 1.3.6 |
| vscode-tailwindcss | bra | 0.4.1 |
| node-snippets | chr | 1.1.1 |
| path-intellisense | chr | 2.2.1 |
| vcard | cst | 1.0.1 |
| dart-code | Dar | 3.13.2 |
| flutter | Dar | 3.13.2 |
| jshint | dba | 0.10.21 |
| vscode-eslint | dba | 2.1.8 |
| vscode-deno | den | 2.0.4 |
| gitlens | eam | 10.2.2 |
| vscode-html-css | ecm | 0.2.3 |
| EditorConfig | Edi | 0.15.1 |
| vscode-npm-script | eg2 | 0.3.13 |
| php-intellisense | fel | 2.3.14 |
| file-icons | fil | 1.0.25 |
| vscode-firefox-debug | fir | 2.9.0 |
| vscode-pull-request-github | Git | 0.18.0 |
| vscode-drawio | hed | 0.7.2 |
| helium-icon-theme | hel | 1.0.0 |
| beautify | Hoo | 1.5.0 |
| vscode-pigments | jas | 2.0.0 |
| angular-essentials | joh | 9.0.1 |
| Angular2 | joh | 9.1.2 |
| vscode-peacock | joh | 3.8.0 |
| vscode-phpfmt | kok | 1.0.30 |
| vscode-jsonp | luy | 1.0.1 |
| php-namespace-resolver | Meh | 1.1.8 |
| dotenv | mik | 1.0.1 |
| vscode-docker | ms- | 1.4.1 |
| vscode-kubernetes-tools | ms- | 1.2.1 |
| mssql | ms- | 1.9.0 |
| vscode-typescript-next | ms- | 4.1.20200810 |
| vscode-typescript-tslint-plugin | ms- | 1.2.3 |
| vsliveshare | ms- | 1.0.2478 |
| debugger-for-chrome | msj | 4.12.9 |
| debugger-for-edge | msj | 1.0.15 |
| angular-console | nrw | 13.0.0 |
| vscode-jest | Ort | 3.2.0 |
| material-icon-theme | PKi | 4.2.0 |
| fabric8-analytics | red | 0.1.0 |
| java | red | 0.65.0 |
| vscode-xml | red | 0.13.0 |
| vscode-yaml | red | 0.9.1 |
| java-generate-setters-getters | soh | 5.3.0 |
| vscodeintellicode | Vis | 1.2.9 |
| vscode-java-debug | vsc | 0.27.1 |
| vscode-java-dependency | vsc | 0.10.2 |
| vscode-java-pack | vsc | 0.9.1 |
| vscode-java-test | vsc | 0.24.0 |
| vscode-maven | vsc | 0.23.0 |
| quokka-vscode | Wal | 1.0.312 |
| wg-getters-and-setters | Wil | 2.0.0 |
| vscode-import-cost | wix | 2.12.0 |
(2 theme extensions excluded)
</details> <!-- generated by issue reporter -->
closed time in 10 hours
ransfordarthurjrissue commentmicrosoft/vscode
TS Server fatal error: Debug Failure.
Caused by the deno extension
Duplicate of https://github.com/denoland/vscode_deno/issues/89
comment created time in 10 hours
issue commentmicrosoft/vscode
Markdown language features disabled in WSL
@sandy081
comment created time in 11 hours
issue commentmicrosoft/vscode
TypeScript '@deprecated' warning shown for wrong overload
Please share the text of the code along with screenshots
comment created time in 11 hours
issue closedmicrosoft/vscode
I am a suggested contact for myself
Issue Type: <b>Bug</b>
I signed back into Liveshare, using the same GitHub account, after long enough away that my previous GitHub OAuth token had expired. I then saw myself listed as a suggest contact for myself.
VS Code version: Code 1.47.3 (91899dcef7b8110878ea59626991a18c8a6a1b3e, 2020-07-23T13:08:29.692Z) OS version: Darwin x64 19.6.0
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz (4 x 2700) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>metal: disabled_off<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | 2, 2, 2 |
| Memory (System) | 8.00GB (0.14GB free) |
| Process Argv | |
| Screen Reader | no |
| VM | 0% |
</details><details><summary>Extensions (13)</summary>
| Extension | Author (truncated) | Version |
|---|---|---|
| vscode-eslint | dba | 2.1.8 |
| xml | Dot | 2.5.1 |
| vscode-firefox-debug | fir | 2.9.0 |
| vscode-peacock | joh | 3.8.0 |
| chat | kar | 0.35.0 |
| python | ms- | 2020.7.96456 |
| cpptools | ms- | 0.29.0 |
| github-issues-prs | ms- | 0.9.2 |
| vsliveshare | ms- | 1.0.2478 |
| vsliveshare-audio | ms- | 0.1.85 |
| vsliveshare-pack | ms- | 0.4.0 |
| vscode-yaml | red | 0.9.1 |
| vscode-vuln-cost | sny | 1.3.6 |
</details> <!-- generated by issue reporter -->
closed time in a day
deFractalissue commentmicrosoft/vscode
I am a suggested contact for myself
Please file this issue against the live share extension
comment created time in a day
PR closed microsoft/vscode
<!-- Thank you for submitting a Pull Request. Please:
- Read our Pull Request guidelines: https://github.com/Microsoft/vscode/wiki/How-to-Contribute#pull-requests.
- Associate an issue with the Pull Request.
- Ensure that the code is up-to-date with the
masterbranch. - Include a description of the proposed changes and how to test them. -->
This PR fixes autoImports Description
pr closed time in a day
pull request commentmicrosoft/vscode
Updated autoImports description
Fixed by #104211 instead
comment created time in a day
pull request commentmicrosoft/vscode
Thanks! Will be in the first 1.49 insiders build
comment created time in a day
push eventmicrosoft/vscode
commit sha 2f61d0037ccfb70b8b669898806e2d63dfbddaae
fixes #104059 (#104193) Co-authored-by: Andrew Maust <[email protected]>
push time in a day
PR merged microsoft/vscode
<!-- Thank you for submitting a Pull Request. Please:
- Read our Pull Request guidelines: https://github.com/Microsoft/vscode/wiki/How-to-Contribute#pull-requests.
- Associate an issue with the Pull Request.
- Ensure that the code is up-to-date with the
masterbranch. - Include a description of the proposed changes and how to test them. -->
This PR fixes #104059 checks if "editor.parameterHint.enabled" is true before showing parameter hints if *.suggest.completeFunctionCalls is enabled.
To test this create a javascript or typescript file and try to complete a function with and without "editor.parameterHints.enabled" set to true.
pr closed time in a day
issue closedmicrosoft/vscode
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.47.3
- OS Version: macOS
Steps to Reproduce:
- Add
"editor.parameterHints.enabled": falseand"javascript.suggest.completeFunctionCalls": trueto your settings. - Open JavaScript file and write
console.log, press Tab to autocomplete. Actual behavior, parameter hints are visible even though config is false. Expected behavior, parameter hints are invisible.
/cc @mjbvz
closed time in a day
svipasissue closedmicrosoft/vscode
"JavaScript > Suggest : Auto Imports" setting description looks incorrect
- VSCode Version:1.48.0-insiders
- OS Version: Windows_NT x64 10.0.18362
Steps to Reproduce:
- Open Settings (File > Preferences > Settings)
- Find the setting "JavaScript > Suggest : Auto Imports"
- Read description!
The description is "Enable/disable auto import suggestions. Requires using Typescript 2.6.1 or newer in workspace." Surely, there is no need for Typescript in the workspace if it is a JavaScript-related setting?
The same applies to "JavaScript > Update Imports on File Move: Enabled".
closed time in a day
roboleissue commentmicrosoft/vscode
"JavaScript > Suggest : Auto Imports" setting description looks incorrect
Fixed by #104211
comment created time in a day
push eventmicrosoft/vscode
commit sha 7e4fd71ad82f6ff01e4020b1e33a831f129462d3
Removed lines requiring Typescript version < 3.0 (#104211)
push time in a day
PR merged microsoft/vscode
<!-- Thank you for submitting a Pull Request. Please:
- Read our Pull Request guidelines: https://github.com/Microsoft/vscode/wiki/How-to-Contribute#pull-requests.
- Associate an issue with the Pull Request.
- Ensure that the code is up-to-date with the
masterbranch. - Include a description of the proposed changes and how to test them. -->
This PR fixes descriptions requiring Typescript versions <= 3.
pr closed time in a day
PR closed microsoft/vscode
<!-- Thank you for submitting a Pull Request. Please:
- Read our Pull Request guidelines: https://github.com/Microsoft/vscode/wiki/How-to-Contribute#pull-requests.
- Associate an issue with the Pull Request.
- Ensure that the code is up-to-date with the
masterbranch. - Include a description of the proposed changes and how to test them. -->
This PR fixes descriptions requiring Typescript versions <= 3.
pr closed time in a day
pull request commentmicrosoft/vscode
Removed lines requiring Typescript version <= 3.0
Thanks!
comment created time in a day
issue commentmicrosoft/vscode
You are on an old VS Code version. Do you see this with VS Code 1.47+?
comment created time in a day
issue commentmicrosoft/TypeScript
Missing property types on the function object
Function.prototype.name was non-standard before ES6 (although widely supported). This error is likely by-design but I'll wait for a TS team member to confirm
comment created time in a day
issue closedmicrosoft/vscode
TS Server fatal error: Debug Failure.
Issue Type: <b>Bug</b>
❗️❗️❗️ Please fill in the sections below to help us diagnose the issue ❗️❗️❗️
TypeScript Version: 3.9.6
Steps to reproduce crash 1. 2. 3.
TS Server Log Server logging disabled. To help us fix crashes like this, please enable logging by setting:
"typescript.tsserver.log": "verbose"
After enabling this setting, future crash reports will include the server log.
TS Server Error Stack
Error: Debug Failure.
at actualResolveModuleNamesWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:99915:161)
at resolveModuleNamesWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100133:26)
at resolveModuleNamesReusingOldState (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100282:19)
at processImportedModules (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101695:35)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101438:17)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100014:60
at Object.forEach (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at Object.createProgram (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100014:16)
at synchronizeHostData (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:138753:26)
at Proxy.getProgram (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:138845:13)
at ConfiguredProject.Project.updateGraphWorker (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:143337:53)
at ConfiguredProject.Project.updateGraph (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:143280:42)
at ConfiguredProject.updateGraph (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:144074:63)
at ProjectService.createLoadAndUpdateConfiguredProject (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:145727:25)
at ProjectService.assignProjectToOpenedScriptInfo (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146608:44)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146927:97
at Object.flatMap (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:465:25)
at ProjectService.applyChangesInOpenFiles (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146927:41)
at Session.handlers.ts.createMapFromTemplate._a.<computed> (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:147790:46)
at c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149553:88
at IOSession.Session.executeWithRequestId (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149544:28)
at IOSession.Session.executeCommand (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149553:33)
at IOSession.Session.onMessage (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149577:35)
at Interface.<anonymous> (c:\Program Files\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:150893:27)
at Interface.emit (events.js:203:13)
at Interface._onLine (readline.js:316:10)
at Interface._normalWrite (readline.js:461:12)
at Socket.ondata (readline.js:172:10)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
VS Code version: Code 1.47.3 (91899dcef7b8110878ea59626991a18c8a6a1b3e, 2020-07-23T13:12:49.994Z) OS version: Windows_NT x64 10.0.19041
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz (8 x 3392) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | undefined |
| Memory (System) | 31.92GB (5.80GB free) |
| Process Argv | . |
| Screen Reader | no |
| VM | 0% |
</details><details><summary>Extensions (26)</summary>
| Extension | Author (truncated) | Version |
|---|---|---|
| ng-template | Ang | 0.1000.7 |
| vscode-intelephense-client | bme | 1.5.3 |
| path-intellisense | chr | 2.2.1 |
| vscode-deno | den | 1.26.0 |
| xml | Dot | 2.5.1 |
| EditorConfig | Edi | 0.15.1 |
| vsc-material-theme | Equ | 32.8.0 |
| vsc-material-theme-icons | equ | 1.2.0 |
| php-debug | fel | 1.13.0 |
| textile | idl | 0.1.5 |
| Angular2 | joh | 9.1.2 |
| json-to-ts | Mar | 1.7.5 |
| auto-save | mcr | 1.0.3 |
| remote-wsl | ms- | 0.44.4 |
| vscode-typescript-tslint-plugin | ms- | 1.2.3 |
| material-icon-theme | PKi | 4.2.0 |
| open-php-html-js-in-browser | Pri | 1.8.0 |
| java | red | 0.65.0 |
| vscode-xml | red | 0.13.0 |
| vscode-table-formatter | shu | 1.2.1 |
| vscodeintellicode | Vis | 1.2.9 |
| vscode-java-debug | vsc | 0.27.1 |
| vscode-java-dependency | vsc | 0.10.2 |
| vscode-java-pack | vsc | 0.9.1 |
| vscode-java-test | vsc | 0.24.0 |
| vscode-maven | vsc | 0.23.0 |
(1 theme extensions excluded)
</details> <!-- generated by issue reporter -->
closed time in a day
muhpolissue commentmicrosoft/vscode
TS Server fatal error: Debug Failure.
Caused by the deno extension
See https://github.com/denoland/vscode_deno/issues/89
comment created time in a day
issue commentmicrosoft/vscode
Do you mean running node applications using VS Code's integrated terminal?
comment created time in a day
issue commentmjbvz/vscode-markdown-emoji
Please provide steps to reproduce
comment created time in a day
issue closedmicrosoft/vscode
The TypeScript language service died unexpectedly 5 times in the last 5 Minutes.
Ubuntu 19.10
Version: 1.44.0 Commit: 2aae1f26c72891c399f860409176fe435a154b13 Date: 2020-04-08T11:22:13.689Z Electron: 7.1.11 Chrome: 78.0.3904.130 Node.js: 12.8.1 V8: 7.8.279.23-electron.0 OS: Linux x64 5.3.0-45-generic
I've tried to use intellisense inside js/ts files. This issue persists from the moment I've installed Ubuntu 19.10 in october 2019. From my point of view there is a compatibility issue. The only way to make intellisense to work just enough(js files will not work) is to downgrade to version 1.39.
closed time in a day
SurrenderToTheNowissue commentmicrosoft/vscode
The TypeScript language service died unexpectedly 5 times in the last 5 Minutes.
Closing this issue as out of date
If you are still seeing it in VS Code 1.48+, please open a new issue
comment created time in a day
issue closedmicrosoft/vscode
TS Server fatal error: Debug Failure.
Issue Type: <b>Bug</b>
❗️❗️❗️ Please fill in the sections below to help us diagnose the issue ❗️❗️❗️
TypeScript Version: 3.9.6
Steps to reproduce crash 1. 2. 3.
TS Server Log Server logging disabled. To help us fix crashes like this, please enable logging by setting:
"typescript.tsserver.log": "verbose"
After enabling this setting, future crash reports will include the server log.
TS Server Error Stack
Error: Debug Failure.
at actualResolveModuleNamesWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:99915:161)
at resolveModuleNamesWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100133:26)
at resolveModuleNamesReusingOldState (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100282:19)
at processImportedModules (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101695:35)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101438:17)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101665:21
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at processLibReferenceDirectives (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101660:16)
at findSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101435:21)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:85
at getSourceFileFromReferenceWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101234:34)
at processSourceFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101267:13)
at processRootFile (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:101090:13)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100014:60
at Object.forEach (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:167:30)
at Object.createProgram (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:100014:16)
at synchronizeHostData (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:138753:26)
at Object.getProgram (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:138845:13)
at ConfiguredProject.Project.updateGraphWorker (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:143337:53)
at ConfiguredProject.Project.updateGraph (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:143280:42)
at ConfiguredProject.updateGraph (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:144074:63)
at ProjectService.createLoadAndUpdateConfiguredProject (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:145727:25)
at ProjectService.assignProjectToOpenedScriptInfo (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146608:44)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146927:97
at Object.flatMap (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:465:25)
at ProjectService.applyChangesInOpenFiles (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:146927:41)
at Session.handlers.ts.createMapFromTemplate._a.<computed> (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:147790:46)
at c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149553:88
at IOSession.Session.executeWithRequestId (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149544:28)
at IOSession.Session.executeCommand (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149553:33)
at IOSession.Session.onMessage (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:149577:35)
at Interface.<anonymous> (c:\Users\offic\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\node_modules\typescript\lib\tsserver.js:150893:27)
at Interface.emit (events.js:203:13)
at Interface._onLine (readline.js:316:10)
at Interface._normalWrite (readline.js:461:12)
at Socket.ondata (readline.js:172:10)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
VS Code version: Code 1.47.3 (91899dcef7b8110878ea59626991a18c8a6a1b3e, 2020-07-23T13:12:49.994Z) OS version: Windows_NT x64 10.0.19041
<details> <summary>System Info</summary>
| Item | Value |
|---|---|
| CPUs | Intel(R) Core(TM) i5-4210U CPU @ 1.70GHz (4 x 2394) |
| GPU Status | 2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_renderer: disabled_off_ok<br>video_decode: enabled<br>viz_display_compositor: enabled_on<br>viz_hit_test_surface_layer: disabled_off_ok<br>webgl: enabled<br>webgl2: enabled |
| Load (avg) | undefined |
| Memory (System) | 11.90GB (5.39GB free) |
| Process Argv | . |
| Screen Reader | no |
| VM | 0% |
</details><details><summary>Extensions (13)</summary>
| Extension | Author (truncated) | Version |
|---|---|---|
| node-snippets | chr | 1.1.1 |
| vscode-deno | den | 1.26.0 |
| vscode-firefox-debug | fir | 2.9.0 |
| go | gol | 0.16.1 |
| beautify | Hoo | 1.5.0 |
| vscode-docker | ms- | 1.4.1 |
| python | ms- | 2020.7.96456 |
| cpptools | ms- | 0.29.0 |
| vetur | oct | 0.26.1 |
| bootstrap4-vscode | the | 6.1.0 |
| vscode-icons | vsc | 10.2.0 |
| JavaScriptSnippets | xab | 1.8.0 |
| material-theme | zhu | 3.8.5 |
(4 theme extensions excluded)
</details> <!-- generated by issue reporter -->
closed time in a day
officialanuragissue commentmicrosoft/vscode
TS Server fatal error: Debug Failure.
Caused by the deno extension
See https://github.com/denoland/vscode_deno/issues/89
comment created time in a day
issue commentmicrosoft/vscode
Add codeActionsOnSave per language
What is editor.codeActionsOnPaste? Does it come from an extension?
editor.codeActionsOnSave can already be set per language
comment created time in a day
issue commentmicrosoft/vscode
I can't find the documentation about the codeActionsOnSave feature
Yes, there should likely just be a new section in one of the docs pages for codeActionsOnSave. The fixes all come from extensions but we can document the couple of built-in ones
comment created time in a day
issue commentmicrosoft/vscode
WebView port mapping not working under Remote SSH
Yes you should be able to workaround the issue by calling openExternal yourself. Not great but I think it should work
@deepak1556 Let me know if I can help you look into the electron issues/feature requests
comment created time in a day
issue commentmicrosoft/vscode
I can't browse links in virtual documents on VSCode using orca
Webviews are weird because they are not part of the normal dom flow. This means that we have to use the aria-flowto attribute to try to help screenreaders understand where the webview conceptually slots into the dom
@joanmarie Do other webview based views, such as the markdown preview or release notes work?
comment created time in a day
issue commentmicrosoft/vscode
Hmm, I believe TS already does this though: https://github.com/microsoft/vscode/blob/6dd0a9a64dbd9cbf032be18311eb97b42fea1d94/extensions/typescript-language-features/src/languageFeatures/definitions.ts#L43
Do you have a self-contained example for this or a build of dart that uses definition links? I'd like to be able to debug what is going on.
result.range seems like the correct value to use at that point in the code as the other two properties are selection ranges:

comment created time in a day
push eventmicrosoft/vscode
commit sha 6d0ac4702275397def590552cbc475638585ed18
Fix RC version
commit sha 219120f66769c3c24e78d4b03d477b4164b185f0
Use TS RC for building VS Code
commit sha 3bcac20a69784790307a5dc95fd54bde2b8bdc93
Fix html folding test for TS bug
push time in a day
issue commentmicrosoft/vscode
printing Dataframes causes column shift
/extPython
comment created time in a day
push eventmicrosoft/vscode-typescript-next
commit sha d84e1afaf6556053f6beb529c3b149c6321a52aa
Publishing version bump ***NO_CI***
push time in a day
issue commentmicrosoft/vscode
frame WebViewes eat keyboard input
alt+f is working for me and @sbatten in insiders on windows.
For just pressing alt to show the mnemonics, this does not seem like a regression from 1.47 in my testing but it was working in 1.46
comment created time in a day
push eventmicrosoft/vscode
commit sha a3e37dc103215e6d8060a439843d966312abb705
Remove expect error
push time in a day
push eventmicrosoft/vscode
commit sha d21ff5b1c318622613be170ac050bd5a87804b03
Remove expect error for TS 4.0
push time in a day
issue commentmicrosoft/vscode
Devtools do not open (Stable and Insiders) (fresh installed insiders)
Since yoy don't have any webviews open, the Open Webviews Developer Tools command is not expected to do anything
Assigning @deepak1556 for the normal dev tools not opening
comment created time in a day
issue commentmicrosoft/vscode
Inconsistent options between "Find" and "Replace"
Webviews only provide basic search, not replace. In this case, the extension should intercept ctrl+f to show the same find/replace UI they show for ctrl+h
comment created time in a day
push eventmicrosoft/vscode
commit sha 6dd0a9a64dbd9cbf032be18311eb97b42fea1d94
Remove any casts
commit sha 7819af28ae11d99043ce8aa87497c13060a47670
Pick up TS 4.0 rc for insiders
push time in a day
issue commentmicrosoft/vscode
frame WebViewes eat keyboard input
@sbatten Has the way the menus handle mnemonics changed this iteration? The webview still seem to be dispatching the events but they aren't being handled by anyone
comment created time in a day
issue commentmicrosoft/vscode
@jrieken Do you know what about that commit is incorrect?
@DanTup Can you please provide steps to reproduce this so we can investigate?
comment created time in a day
issue commentmicrosoft/vscode
Please follow these instructions to collect performance information. Share the output of code-insiders --status
comment created time in a day
issue commentmicrosoft/vscode
An error occurs when executing "Run/Run Interactive/Pull/Push..." commands for Docker image
/extDocker
comment created time in a day
issue commentmicrosoft/vscode
Does this reproduce with all extensions disabled?
comment created time in a day
issue closedmicrosoft/vscode
You can resolve the problem by installing the specified framework and/or SDK.
The specified framework can be found at:
- https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=1.1.2&arch=x64&rid=win10-x64 Целевой процесс завершил работу без вызова события, запущенного CoreCLR. Убедитесь, что в целевом процессе настроено использование .NET Core. Это может быть необходимо, если целевой процесс не запускался в .NET Core.
closed time in a day
DKa-Labpush eventmicrosoft/vscode-docs
commit sha 4efd8568437d956d24e75e0990d7dbf635740d93
Add note on TS 4.0
push time in 2 days
issue commentmicrosoft/vscode
Unable to autocomplete base class methods when trying to override them
/needsMoreInfo
comment created time in 2 days
issue commentmicrosoft/vscode
The formatter make my source code damaged.
/extC++
comment created time in 2 days
issue commentmicrosoft/vscode
Support for /// xml comment insertion
/extC#
comment created time in 2 days
push eventmicrosoft/vscode-typescript-next
commit sha 7c67a50306de50295501d574a1fb9e82151991cd
Publishing version bump ***NO_CI***
push time in 2 days