mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-15 23:31:04 +00:00
25 lines
611 B
JSON
25 lines
611 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run Extension",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": ["--extensionDevelopmentPath=${workspaceFolder}/src"],
|
|
"sourceMaps": true,
|
|
"outFiles": ["${workspaceFolder}/src/dist/**/*.js"],
|
|
"preLaunchTask": "${defaultBuildTask}",
|
|
"env": {
|
|
"NODE_ENV": "development",
|
|
"VSCODE_DEBUG_MODE": "true"
|
|
},
|
|
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
|
|
"presentation": {
|
|
"hidden": false,
|
|
"group": "tasks",
|
|
"order": 1
|
|
}
|
|
}
|
|
]
|
|
}
|