Files
project-cybersyn/.vscode/launch.json
2023-03-03 15:45:23 -05:00

67 lines
2.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",
"modsPath": "~/.factorio/mods-debug/",
"manageMod": true,
"adjustMods": {
"debugadapter": true,
"flib": true,
"cybersyn": true,
"EditorExtensions": true,
},
"disableExtraMods": true
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug (Modded)",
"modsPath": "~/.factorio/mods-debug/",
"manageMod": true,
"adjustMods": {
"debugadapter": true,
"flib": true,
"cybersyn": true,
},
"disableExtraMods": false
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug (Settings & Data)",
"modsPath": "~/.factorio/mods-debug/",
"hookSettings": true,
"hookData": true,
"adjustMods": {
"debugadapter": true,
"flib": true,
"cybersyn": true,
},
//"disableExtraMods": true
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Mod Debug (Profile)",
"modsPath": "~/.factorio/mods-debug/",
"hookMode": "profile",
"adjustMods": {
"debugadapter": true,
"flib": true,
},
},
{
"type": "factoriomod",
"request": "launch",
"name": "Factorio Debug (Modded)",
"modsPath": "~/.factorio/mods-debug/",
},
]
}