ifc-language-server/.vscode/launch.json
Ryan Schultz fd43c64e97 fix: Auto-reveal tree view and improve display
Changes:
- Tree view now automatically opens and focuses when command is run
- Display full entity definition lines in tree (not just type)
- Remove duplicate type annotation from tree items
- Fix preLaunchTask in launch.json (was object, should be string)
- Fix TypeScript error in treeView.reveal() call

Tree items now show cleanly:
  #8=IFCCARTESIANPOINT((0.,0.,0.));
Instead of:
  #8 = IFCCARTESIANPOINT (IFCCARTESIANPOINT)

Much more readable and useful!
2025-12-07 11:26:24 -06:00

28 lines
600 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "extensionHost",
"request": "launch",
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceRoot}"
],
"outFiles": [
"${workspaceRoot}/client/out/**/*.js"
],
"preLaunchTask": "npm: compile"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Server",
"port": 6009,
"restart": true,
"outFiles": [
"${workspaceRoot}/server/out/**/*.js"
]
}
]
}