Files
64a497bda9 Reorder dreammaker to re-empower the Problems tab in VSC (#16556)
* aurora was a mistake

* Don't you love when the editor masks issues?

---------

Co-authored-by: Werner <1331699+Arrow768@users.noreply.github.com>
2023-07-08 19:36:27 +00:00

26 lines
796 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": [
{ // Builds with CBT and launches DreamSeeker.
"type": "byond",
"request": "launch",
"name": "Launch DreamSeeker",
"preLaunchTask": "Build All",
"postDebugTask": "dreamchecker",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{ // Builds with CBT and starts the server with DreamDaemon.
"type": "byond",
"request": "launch",
"name": "Launch DreamDaemon",
"preLaunchTask": "Build All",
"postDebugTask": "dreamchecker",
"dmb": "${workspaceFolder}/${command:CurrentDMB}",
"dreamDaemon": true
}
]
}