-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
69 lines (69 loc) · 1.67 KB
/
config.example.json
File metadata and controls
69 lines (69 loc) · 1.67 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"projects": [
{
"name": "MyGame",
"paths": ["C:/Path/To/YourProject/Script"],
"language": "angelscript",
"extensions": [".as"]
},
{
"name": "MyGame-Cpp",
"paths": ["C:/Path/To/YourProject/Source", "C:/Path/To/YourProject/Plugins"],
"language": "cpp",
"extensions": [".h", ".cpp"]
},
{
"name": "Engine",
"paths": ["C:/Path/To/Engine/Source"],
"language": "cpp",
"extensions": [".h", ".cpp"]
},
{
"name": "MyGame-Content",
"paths": ["C:/Path/To/YourProject/Content"],
"contentRoot": "C:/Path/To/YourProject/Content",
"language": "content",
"extensions": [".uasset", ".umap"]
},
{
"name": "MyGame-Config",
"paths": ["C:/Path/To/YourProject/Config"],
"language": "config",
"extensions": [".ini"]
},
{
"name": "MyGame-CSharp",
"paths": ["C:/Path/To/YourProject/Source", "C:/Path/To/YourProject/Plugins"],
"language": "csharp",
"extensions": [".cs"],
"includePatterns": ["*.Build.cs", "*.Target.cs", "*.Automation.cs"]
}
],
"exclude": [
"**/Intermediate/**",
"**/Binaries/**",
"**/ThirdParty/**",
"**/__ExternalActors__/**",
"**/__ExternalObjects__/**",
"**/Developers/**",
"**/.git/**",
"**/node_modules/**"
],
"service": {
"port": 3847,
"host": "127.0.0.1"
},
"watcher": {
"debounceMs": 100
},
"zoekt": {
"enabled": true,
"webPort": 6070,
"indexDir": "./data/zoekt-index",
"mirrorDir": "./data/zoekt-mirror",
"parallelism": 4,
"fileLimitBytes": 524288,
"reindexDebounceMs": 5000,
"searchTimeoutMs": 3000
}
}