29 lines
646 B
JSON
29 lines
646 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Forge: runClient with Debug",
|
|
"type": "shell",
|
|
"command": "nix-shell",
|
|
"args": [
|
|
"--command",
|
|
"gradle forge:runClient --offline --no-daemon --stacktrace --debug-jvm"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
},
|
|
{
|
|
"label": "Fabric: runClient with Debug",
|
|
"type": "shell",
|
|
"command": "nix-shell",
|
|
"args": [
|
|
"--command",
|
|
"gradle fabric:runClient --offline --no-daemon --stacktrace --debug-jvm"
|
|
],
|
|
"options": {
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
}
|
|
]
|
|
}
|