-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
54 lines (49 loc) · 943 Bytes
/
config.example.json
File metadata and controls
54 lines (49 loc) · 943 Bytes
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
{
"scan": {
"ignorePatterns": [
"node_modules/**",
".git/**",
"dist/**",
"build/**",
".codemap/**",
"*.test.ts",
"*.spec.ts"
],
"maxFileSize": 1048576,
"maxDepth": null,
"followSymlinks": false,
"bypassHardcodedIgnoreList": false
},
"plugins": {
"autoload": true,
"paths": [],
"enabled": [
"@egentica/codemap-parser-typescript",
"@egentica/codemap-parser-vue"
],
"disabled": [],
"config": {
"@egentica/codemap-parser-typescript": {
"compilerOptions": {
"target": "ES2020"
}
}
}
},
"backups": {
"enabled": true,
"dailyRetention": 5,
"turnRetention": 10
},
"displayFilter": {
"hintSkipCount": 9,
"groupShowOnce": true
},
"annotations": {
"writeAnnotationsToSource": false
},
"watcher": {
"watcherDisabled": false,
"port": 31347
}
}