mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-10 16:58:55 -05:00
30 lines
651 B
JSON
30 lines
651 B
JSON
{
|
|
"version": "0.1.0",
|
|
// List of configurations. Add new configurations or edit existing ones.
|
|
"configurations": [
|
|
{
|
|
"name": "Attach",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 6044,
|
|
"protocol": "inspector",
|
|
"sourceMaps": true,
|
|
"outFiles": ["${workspaceFolder}/out/**/*.js"]
|
|
},
|
|
{
|
|
"name": "Unit Tests",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/test/index.js",
|
|
"stopOnEntry": false,
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"runtimeExecutable": null,
|
|
"runtimeArgs": [],
|
|
"env": {},
|
|
"sourceMaps": true,
|
|
"outFiles": ["${workspaceFolder}/out/**/*.js"]
|
|
}
|
|
]
|
|
}
|