mlcl_mailer
Version:
Mailer plugin for molecuel
38 lines • 1.25 kB
JSON
{
// Verwendet IntelliSense zum Ermitteln möglicher Node.js-Debugattribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"processId": "${command:PickProcess}",
"port": 5858,
"sourceMaps": true
},
{
"type": "node",
"request": "launch",
"name": "Programm starten",
"program": "${workspaceRoot}\\lib\\index.js",
"outFiles": [
"${workspaceRoot}/out/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Test starten",
"program": "${workspaceRoot}\\node_modules\\mocha\\bin\\_mocha",
"cwd": "${workspaceRoot}/",
"stopOnEntry": false,
"runtimeExecutable": null,
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/test/**/*.js"
]
}
]
}