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!
28 lines
600 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
}
|