code-push/.vscode/launch.json

33 строки
993 B
JSON
Исходник Обычный вид История

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run CLI",
"type": "node",
"request": "launch",
"protocol": "inspector",
"program": "${workspaceRoot}/cli/bin/script/cli.js",
"stopOnEntry": false,
"sourceMaps": true,
"preLaunchTask": "gulp: build",
"args": [
"--info"
]
},
{
"name": "Unit Test",
"type": "node",
"request": "launch",
"protocol": "inspector",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"sourceMaps": true,
"args": [
"test"
]
}
]
}