SimplyCompat/.vscode/launch.json

21 lines
479 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"request": "attach",
"name": "Attach to Forge Client",
"hostName": "localhost",
"port": 5005,
"preLaunchTask": "Forge: runClient (fish) with Debug"
},
{
"type": "java",
"request": "attach",
"name": "Attach to Fabric Client",
"hostName": "localhost",
"port": 5005,
"preLaunchTask": "Fabric: runClient (fish) with Debug"
}
]
}