26 lines
495 B
JSON
26 lines
495 B
JSON
|
{
|
||
|
"version": "0.0.1",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Extension",
|
||
|
"type": "extensionHost",
|
||
|
"request": "launch",
|
||
|
"runtimeExecutable": "${execPath}",
|
||
|
"args": [
|
||
|
"--extensionDevelopmentPath=${workspaceFolder}"
|
||
|
],
|
||
|
"outFiles": [
|
||
|
"${workspaceFolder}/out/**/*.js"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name": "TopJS Sample",
|
||
|
"type": "topjs",
|
||
|
"request": "launch",
|
||
|
"port": 30992,
|
||
|
"program": "${workspaceFolder}/${command:getProgramName}",
|
||
|
"runtimeExecutable": "topjs3"
|
||
|
}
|
||
|
]
|
||
|
}
|