summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package.json11
-rw-r--r--server/src/config.lua24
2 files changed, 35 insertions, 0 deletions
diff --git a/package.json b/package.json
index 89e2de8e..2f23fe13 100644
--- a/package.json
+++ b/package.json
@@ -47,6 +47,17 @@
],
"description": "Lua runtime version.\nLua运行版本。"
},
+ "Lua.runtime.path": {
+ "scope": "resource",
+ "type": "array",
+ "items": "string",
+ "description": "package.path",
+ "default": [
+ "?.lua",
+ "?/init.lua",
+ "?/?.lua"
+ ]
+ },
"Lua.diagnostics.disable": {
"scope": "resource",
"type": "array",
diff --git a/server/src/config.lua b/server/src/config.lua
index c155eab2..125ac655 100644
--- a/server/src/config.lua
+++ b/server/src/config.lua
@@ -38,10 +38,34 @@ local function Str2Hash(sep)
end
end
+local function Array(checker)
+ return function (tbl)
+ if type(tbl) ~= 'table' then
+ return false
+ end
+ local t = {}
+ for _, v in ipairs(tbl) do
+ local ok, result = checker(v)
+ if ok then
+ t[#t+1] = result
+ end
+ end
+ if #t == 0 then
+ return false
+ end
+ return true, t
+ end
+end
+
local Template = {
runtime = {
version = {'Lua 5.3', String},
library = {{}, Str2Hash ';'},
+ path = {{
+ "?.lua",
+ "?/init.lua",
+ "?/?.lua"
+ }, Array(String)},
},
diagnostics = {
globals = {{}, Str2Hash ';'},