Ely Ronnen 8b64cd8be2
[lldb-dap] Add module symbol table viewer to VS Code extension #140626 (#153836)
- VS Code extension:
- Add module symbol table viewer using
[Tabulator](https://tabulator.info/) for sorting and formatting rows.
  - Add context menu action to the modules tree.
 - lldb-dap
   -  Add `DAPGetModuleSymbolsRequest` to get symbols from a module.
 
Fixes #140626

[Screencast From 2025-08-15
19-12-33.webm](https://github.com/user-attachments/assets/75e2f229-ac82-487c-812e-3ea33a575b70)
2025-08-21 00:31:48 +02:00

19 lines
267 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"outDir": "out",
"rootDir": "src-ts",
"sourceMap": true,
"strict": true,
"target": "es6"
},
"include": [
"src-ts"
],
"exclude": [
"node_modules",
"src-ts/webview",
]
}