1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Just some comment
{
"Lua.diagnostics.globals": [
"ERR",
"OUT",
"IN",
"log",
"_G",
"GC",
"ID",
"DEVELOP",
"DBGPORT",
"DBGWAIT",
"tracy",
"LOCALE",
"SHOWSOURCE",
"TRACE",
"FOOTPRINT"
],
"Lua.diagnostics.disable": [
"close-non-object",
"undefined-field"
],
"Lua.runtime.version": "Lua 5.4",
// Just some comment
"Lua.workspace.maxPreload": 600,
"Lua.workspace.preloadFileSize": 1000,
"Lua.workspace.ignoreDir": [
"locale/",
"libs/",
"3rd",
".vscode",
"meta",
],
"Lua.workspace.library": [
"E:/Github/test",
// Just some comment
"script/meta",
],
"Lua.runtime.path": [
"?.lua",
"script/?.lua",
"script/?/init.lua"
],
"Lua.misc.parameters": [
"--develop=true",
"--dbgport=11413",
"--showsource=true",
]
}
|