added build, launch, and build + launch configs

This commit is contained in:
spookerton
2023-09-10 16:59:14 +01:00
parent 224014ff7c
commit 2591f8d927
2 changed files with 33 additions and 0 deletions

18
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "byond",
"request": "launch",
"name": "Build & DS Debug",
"preLaunchTask": "dm: build - ${command:CurrentDME}",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
},
{
"type": "byond",
"request": "launch",
"name": "DS Debug",
"dmb": "${workspaceFolder}/${command:CurrentDMB}"
}
]
}

15
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "dreammaker",
"dme": "polaris.dme",
"problemMatcher": ["$dreammaker"],
"group": {
"kind": "build",
"isDefault": true
},
"label": "dm: build - polaris.dme"
}
]
}