Squashed initial commit
This commit is contained in:
50
qhtcp-workflow/.vscode/launch.json
vendored
Normal file
50
qhtcp-workflow/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
// 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": [
|
||||
{
|
||||
"type": "R-Debugger",
|
||||
"request": "attach",
|
||||
"name": "Attach to R process",
|
||||
"splitOverwrittenOutput": true
|
||||
},
|
||||
{
|
||||
"type": "R-Debugger",
|
||||
"name": "Launch R-Workspace",
|
||||
"request": "launch",
|
||||
"debugMode": "workspace",
|
||||
"workingDirectory": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "R-Debugger",
|
||||
"name": "Debug R-File",
|
||||
"request": "launch",
|
||||
"debugMode": "file",
|
||||
"workingDirectory": "${fileFolder}",
|
||||
"file": "${file}",
|
||||
},
|
||||
{
|
||||
"type": "R-Debugger",
|
||||
"name": "Debug R-Function",
|
||||
"request": "launch",
|
||||
"debugMode": "function",
|
||||
"workingDirectory": "${workspaceFolder}",
|
||||
"file": "${file}",
|
||||
"mainFunction": "main",
|
||||
"allowGlobalDebugging": false
|
||||
},
|
||||
{
|
||||
"type": "R-Debugger",
|
||||
"name": "Debug R-Package",
|
||||
"request": "launch",
|
||||
"debugMode": "workspace",
|
||||
"workingDirectory": "${workspaceFolder}",
|
||||
"includePackageScopes": true,
|
||||
"loadPackages": [
|
||||
"."
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user