mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-14 04:00:14 +07:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Evolved All",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "luajit",
|
|
"file": "${workspaceFolder}/develop/all.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved Example",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "luajit",
|
|
"file": "${workspaceFolder}/develop/example.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved Unbench",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "luajit",
|
|
"file": "${workspaceFolder}/develop/unbench.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved Untests",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "luajit",
|
|
"file": "${workspaceFolder}/develop/untests.lua"
|
|
}
|
|
}
|
|
]
|
|
}
|