mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
18 lines
428 B
JSON
18 lines
428 B
JSON
{
|
|
"version": "0.1.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"name": "Attach",
|
|
"type": "node",
|
|
"request": "attach",
|
|
// TCP/IP address. Default is "localhost".
|
|
"address": "localhost",
|
|
// Port to attach to.
|
|
"port": 6012,
|
|
"protocol": "inspector",
|
|
"sourceMaps": false,
|
|
"outDir": "${workspaceRoot}/../testbed/server"
|
|
}
|
|
]
|
|
} |