mirror of https://github.com/boa-dev/boa.git
Jason Williams
5 years ago
committed by
GitHub
3 changed files with 97 additions and 38 deletions
@ -1,29 +1,27 @@ |
|||||||
{ |
{ |
||||||
// Use IntelliSense to learn about possible attributes. |
// Use IntelliSense to learn about possible attributes. |
||||||
// Hover to view descriptions of existing attributes. |
// Hover to view descriptions of existing attributes. |
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
||||||
"version": "0.2.0", |
"version": "0.2.0", |
||||||
"configurations": [ |
"configurations": [ |
||||||
{ |
{ |
||||||
"type": "lldb", |
"type": "lldb", |
||||||
"request": "launch", |
"request": "launch", |
||||||
"name": "Launch", |
"name": "Launch", |
||||||
"args": [], |
"args": [], |
||||||
"program": "./target/debug/bin", |
"program": "./target/debug/boa", |
||||||
"cwd": "${workspaceRoot}", |
"cwd": "${workspaceRoot}", |
||||||
"stopOnEntry": false, |
"stopOnEntry": false, |
||||||
"sourceLanguages": [ |
"sourceLanguages": ["rust"] |
||||||
"rust" |
}, |
||||||
] |
{ |
||||||
}, |
"name": "(Windows) Launch", |
||||||
{ |
"type": "cppvsdbg", |
||||||
"name": "(Windows) Launch", |
"request": "launch", |
||||||
"type": "cppvsdbg", |
"program": "${workspaceFolder}/target/debug/boa.exe", |
||||||
"request": "launch", |
"stopAtEntry": false, |
||||||
"program": "${workspaceFolder}/target/debug/bin.exe", |
"cwd": "${workspaceFolder}", |
||||||
"stopAtEntry": false, |
"environment": [] |
||||||
"cwd": "${workspaceFolder}", |
} |
||||||
"environment": [], |
] |
||||||
} |
} |
||||||
] |
|
||||||
} |
|
||||||
|
Loading…
Reference in new issue