Files
jpdebug/.lite_project.lua
2025-10-27 14:39:55 +01:00

23 lines
478 B
Lua

local config = require "core.config"
config.plugins.jpdebug = {
targets = {
["test - msys"] = {
type = "shell",
cmd = {"C:\\msys64\\ucrt64\\bin\\lua.exe", "test.lua"}
},
["test"] = {
type = "shell",
cmd = {"lua", "test.lua"}
},
["luadebug"] = {
type = "luadebug",
entry = "test.lua",
cwd = ".",
-- lua = {"lua"},
lua = {"C:\\msys64\\ucrt64\\bin\\lua.exe"},
},
},
default_target = "luadebug"
}