1+ // Copyright (c) [Year] [Lucky Jacks Casino]
2+ // Licensed under the MIT License. See LICENSE file in the project root for full license information.
3+
14{
25 // Use IntelliSense to learn about possible attributes.
36 // Hover to view descriptions of existing attributes.
47 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
58 "version" : " 0.2.0" ,
69 "configurations" : [
710 {
8- "name" : " Launch Program" ,
911 "type" : " node" ,
1012 "request" : " launch" ,
13+ "name" : " Launch Program" ,
1114 "program" : " ${workspaceFolder}/app.js" ,
12- "console" : " integratedTerminal"
15+ "skipFiles" : [
16+ " <node_internals>/**"
17+ ]
1318 },
1419 {
15- "name" : " Attach to Chrome " ,
16- "type" : " chrome " ,
17- "request" : " attach " ,
18- "port " : 9222 ,
19- "webRoot " : " ${workspaceFolder }"
20+ "name" : " Launch file " ,
21+ "type" : " go " ,
22+ "request" : " launch " ,
23+ "mode " : " debug " ,
24+ "program " : " ${file }"
2025 },
2126 {
22- "name" : " .NET Core Attach" ,
23- "type" : " coreclr " ,
27+ "name" : " RobotCode: Remote- Attach" ,
28+ "type" : " robotcode " ,
2429 "request" : " attach" ,
25- "pipeTransport" : {
26- "pipeCwd" : " ${workspaceFolder}" ,
27- "pipeProgram" : " /usr/bin/ssh" ,
28- "pipeArgs" : [" user@remote-machine" ],
29- "debuggerPath" : " ~/vsdbg/vsdbg"
30- }
30+ "connect" : {
31+ "host" : " localhost" ,
32+ "port" : 6612
33+ },
34+ "pathMappings" : [
35+ {
36+ "localRoot" : " ${workspaceFolder}" ,
37+ "remoteRoot" : " ."
38+ }
39+ ]
40+ },
41+ {
42+ "name" : " RobotCode: Local-Launch" ,
43+ "type" : " robotcode" ,
44+ "request" : " launch" ,
45+ "program" : " ${workspaceFolder}/tests/robotcode_test.robot" ,
46+ "args" : [],
47+ "cwd" : " ${workspaceFolder}" ,
48+ "env" : {},
49+ "console" : " integratedTerminal"
50+ },
51+ {
52+ "type" : " chrome" ,
53+ "request" : " launch" ,
54+ "name" : " Launch Chrome against localhost" ,
55+ "url" : " http://localhost:8080" ,
56+ "webRoot" : " ${workspaceFolder}"
3157 }
3258 ]
3359}
0 commit comments