While using Visual Studio 2022, I am encountering numerous IntelliSense errors related to type definitions from the node_modules folder appearing in the error list window.
I have already excluded the node_modules folder in my tsconfig.json file like this:
"exclude": ["node_modules"]
.Additionally, I included the line
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
in my csproj file.Despite these efforts, the errors persist and I have not been able to successfully get rid of them.