60,985 questions
Score of -1
0 answers
38 views
VS Code shows TypeScript 6 errors despite workspace version being TS 5
I'm getting errors such as
Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
...
Score of -3
0 answers
69 views
Java: Create Java Project" silently fails — no project created, no error [closed]
File->Create New File->Create Java Project
failed without any outputs/logs.
Environment:
VS Code 1.133.0 (Windows 11),
Extension Pack for Java, redhat.java 1.55.0,
vscjava.vscode-java-...
Score of -1
0 answers
42 views
Playwright tests are no longer detected after updating VS Code / Playwright
I have an existing Playwright project with multiple .spec.ts test files that was working correctly before a recent software update.
After updating my development environment, Playwright no longer ...
Score of -2
1 answer
91 views
VS Code 1.131.0 still removes unused imports on Save even with "fixAll" and "organizeImports" set to "never"
I have the following Preferences JSON. Note that both source.fixAll and source.organizeImports are specified as never. The application has been restarted multiple times.
{
"workbench....
Score of -5
1 answer
126 views
Efficiently reviewing local LLM-generated worktrees [closed]
Somewhat recently I've started to use LLM-based coding tools, notably Claude Code. My workflow here involves creating a dedicated Git worktree to do the work, creating a (Hatch) Python virtual ...
Score of -3
0 answers
53 views
VS Code extension host error + can't sign into GitHub [closed]
Recently, every time I try to open VS Code, I get an error that says "Extension host has terminated unexpectedly 3 times within the last 5 minutes." Extension bisect doesn't fix the error, ...
Score of -1
0 answers
183 views
How can I create snippets like Emmet's in VS Code?
Is there a way to make a VS Code snippet behave like Emmet snippets in case of duplication?
For example, through Emmet I can do:
div*3
<div></div>
<div></div>
<div></...
Score of 1
2 answers
127 views
Why is CompileFlags from .clangd file not applied to my VS Code build task?
I'm on Windows with MSYS2 (clang64) and VS Code (with extension llvm-vs-code-extensions.vscode-clangd enabled and setting C_Cpp.intelliSenseEngine disabled).
I have .clangd file in the workspace root:
...
Score of -2
2 answers
123 views
Disable specific Python error raising in VS Code [duplicate]
I have a Python script that uses a library with methods that could return None. And in the code in the repository (that was not written by me), Pylance raises many errors reportOptionalMemberAccess. ...
Score of 3
1 answer
257 views
Is there a way to get the old design of tabs in VS Code 1.129+?
VS Code has updated recently (version 1.131.0 on macOS 15.7.7), and now the tabs look like isolated rectangles. I can't tell which tab is the active one.
I've tried all the themes, and none of them ...
Score of 0
0 answers
55 views
VS Code auto-import suggestions not working for local workspace package in Turborepo (Next.js + Bun + TypeScript)
I'm setting up a Turborepo monorepo with Bun, and I have a shared UI package that is consumed by my Next.js application.
The package works correctly if I manually import components, but VS Code does ...
Score of 0
0 answers
147 views
Visual Studio Code C++ Intellisense Server Shut Down Due to Resource Limits
The vsc cpp extension intellisense server is really slow and often shuts down due to memory usage. How can I track down the problem?
As you can see in the screenshot I have maybe 15 source files and ...
Score of 0
0 answers
100 views
ASP.NET Core 10 MVC: internal server error when not using RazorRuntimeCompilation with VS Code C# debugger [closed]
Setup
OS: Bazzite Linux (Fedora)
Editor: VS Code (Flatpak)
Framework: .NET 10
Project Type: ASP.NET Core MVC
Core Problem
Setting up any basic MVC project and running it with the C# debugger ...
Score of 0
1 answer
158 views
Failed to create virtual environment in VS Code
I'm following a tutorial that uses the Tkinter library. Since I use Linux Mint, I can't use the pip command to directly install packages that I need to use (it can break things, apparently), so ...
Score of 1
1 answer
142 views
Understanding the difference between using 'dotnet run' and the Debugger in VS Code
I am working on an ASP.NET Core MVC web app in VS Code using C#. It's a basic MVC project, but I struggle to properly debug it for the following reasons - for context, the setup is as follows:
The ...