Private
Public Access
1
0
Files
lua-prometheus-exporter/.vscode/launch.json
Jan Grießhaber 149b085cb7 Initial Commit
2025-12-28 18:48:24 +01:00

36 lines
1.0 KiB
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": [
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug",
"factorioArgs": [
"--enable-lua-udp=55555"
]
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug (Settings & Data)",
"hookSettings": true,
"hookData": true,
"factorioArgs": [
"--enable-lua-udp=55555"
]
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug (Profile)",
"hookMode": "profile",
"factorioArgs": [
"--enable-lua-udp=55555"
]
}
]
}