mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-18 12:50:29 +01:00
4874f2a117
* biome port * fix * umm * up * prettier on repo level * . * uh * fix that * . * guh * could be deelted * fix query * raccoon * raccoon
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
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": [
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamSeeker",
|
|
"preLaunchTask": "Build All",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
|
|
},
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamSeeker (low memory mode)",
|
|
"preLaunchTask": "Build All (low memory mode)",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
|
|
},
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamDaemon",
|
|
"preLaunchTask": "Build All",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
|
|
"dreamDaemon": true
|
|
},
|
|
{
|
|
"type": "byond",
|
|
"request": "launch",
|
|
"name": "Launch DreamDaemon (low memory mode)",
|
|
"preLaunchTask": "Build All (low memory mode)",
|
|
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
|
|
"dreamDaemon": true
|
|
},
|
|
{
|
|
"name": "Debug External Libraries",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${command:dreammaker.returnDreamDaemonPath}",
|
|
"cwd": "${workspaceRoot}",
|
|
"args": ["${command:dreammaker.getFilenameDmb}", "-trusted"],
|
|
"preLaunchTask": "Build All"
|
|
},
|
|
{
|
|
"name": "Debug External Libraries (low memory mode)",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${command:dreammaker.returnDreamDaemonPath}",
|
|
"cwd": "${workspaceRoot}",
|
|
"args": ["${command:dreammaker.getFilenameDmb}", "-trusted"],
|
|
"preLaunchTask": "Build All (low memory mode)"
|
|
}
|
|
]
|
|
}
|