mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
* aurora was a mistake * Don't you love when the editor masks issues? --------- Co-authored-by: Werner <1331699+Arrow768@users.noreply.github.com>
26 lines
796 B
JSON
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
|
|
}
|
|
]
|
|
}
|