1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- // 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": [
- "."
- ]
- }
- ]
- }
|