My jsconfig.json file is reporting a problem:
File 'c:/.../node_modules/source-map/source-map' not found.
The file is in the program because:
Root file specified for compilation
It always reports it twice, and points to the first { in the file.
Here's my jsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
}
},
"include": [
"src/**/*"
],
"exclude": ["node_modules"]
}
When I reload VSCode, it's gone for a few minutes and then reappears while using VSCode.