Files
evolved.lua/.vscode/launch.json
2025-11-24 13:35:34 +07:00

44 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Evolved All (lua5.1)",
"type": "lua-local",
"request": "launch",
"program": {
"lua": "lua5.1",
"file": "${workspaceFolder}/develop/all.lua"
}
},
{
"name": "Launch Evolved All (lua5.4)",
"type": "lua-local",
"request": "launch",
"program": {
"lua": "lua5.4",
"file": "${workspaceFolder}/develop/all.lua"
}
},
{
"name": "Launch Evolved All (luajit)",
"type": "lua-local",
"request": "launch",
"program": {
"lua": "luajit",
"file": "${workspaceFolder}/develop/all.lua"
}
},
{
"name": "Launch Evolved Example (LÖVE)",
"type": "lua-local",
"request": "launch",
"program": {
"command": "love"
},
"args": [
"${workspaceFolder}/example"
]
}
]
}