vscode-debug-visualizer
vscode-debug-visualizer copied to clipboard
How do you visualize an array as like a literal table, rather than a graph?
you can provide json into the visualizer in table format - TableVisualizationData in the schema file.
a json that would work might be
{
"table": true
"rows": [
{
"prop1": 123,
"prop2": "abc"
},
{
"prop1": 123,
"prop2": "abc"
}
]
}