quickjs/.vscode/launch.json
2023-02-01 15:56:48 +08:00

31 lines
886 B
JSON

{
// 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": [
{
"name": "qjs-debug main.js",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/qjs-debug",
"args": [
"${workspaceFolder}/example/hello.js"
],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"logging": {"engineLogging": true},
"preLaunchTask": "gcc build active file"
}
]
}