14 lines
295 B
Plaintext
14 lines
295 B
Plaintext
|
if os.getenv "LOCAL_LUA_DEBUGGER_VSCODE" == "1" then
|
||
|
require("lldebugger").start()
|
||
|
end
|
||
|
|
||
|
local function lua_module_paths(module_base_path)
|
||
|
return (module_base_path .. "/?.lua;") .. (module_base_path .. "/?/init.lua;")
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
_all = {
|
||
|
lpath = lua_module_paths "src",
|
||
|
},
|
||
|
}
|