mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-23 06:08:13 +08:00
31 lines
886 B
JSON
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"
|
|
}
|
|
]
|
|
} |