Initial flame_lua_runtime package

This commit is contained in:
gem
2026-06-07 22:53:58 +08:00
commit 733b2fb798
262 changed files with 28439 additions and 0 deletions

17
example/.luarc.json Normal file
View File

@@ -0,0 +1,17 @@
{
"$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
"runtime.version": "Lua 5.4",
"workspace.checkThirdParty": false,
"diagnostics.globals": ["runtime"],
"diagnostics.neededFileStatus": {
"undefined-field": "Any",
"inject-field": "Any",
"assign-type-mismatch": "Any",
"param-type-mismatch": "Any",
"return-type-mismatch": "Any",
"missing-fields": "Any",
"undefined-global": "Any"
},
"type.weakUnionCheck": true,
"type.weakNilCheck": true
}