I'm using VSCode for a Javascript project that runs in a browser JS engine; it will never and can't run in Node.js. But Intellisense quite dramatically warns about features in my code that are deprecated in Node.js. Is there a way to tell it, that this is not a node but a browser project to get only relevant warnings?
if you use eslint as linter. You can do it in the .eslintignore file in your root directory.
take a look here: disable the warnings in VS code