My backend is built with express (so basically javascript). The backend is also able to save some data to .json files and use this data.
var data = JSON.parse(fs.readFileSync("path/data.json"));
It would help me a lot, if Visual Studio Code would provide Intellisense for my data object (like suggesting all elements of this json file). Is there any addon for this kind of "problem" ?
Example:
{
"owner": "testperson",
"age": "30"
}
After parsing this json file (exact way like on top), it would be very helpful to have Intellisense after writing
data.