VSCode jsconfig.json error "node_modules/agent-base/dist/src/index" not found
Disabling typescript in the workspace options seems to be the one thing that stopped this warning for me:
"typescript.validate.enable": false,
Try adding "exclude": ["node_modules"]
as described in the VSCode docs.
I added this and restarted VSCode and the error message went away.