-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
arkit.json
86 lines (86 loc) · 1.99 KB
/
arkit.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://arkit.js.org/schema.json",
"excludePatterns": ["__tests__/"],
"components": [
{
"type": "Main",
"patterns": ["index.ts"]
},
{
"type": "App",
"patterns": ["bin/app/**/*.ts"]
},
{
"type": "Controllers",
"patterns": ["bin/controllers/*.ts"]
},
{
"type": "Usecases",
"patterns": ["bin/usecases/*.ts"]
},
{
"type": "Usecase Interactors - Common",
"patterns": ["bin/usecases/interactors/common/*.ts"]
},
{
"type": "Usecase Interactors - Elements",
"patterns": ["bin/usecases/interactors/elements/*.ts"]
},
{
"type": "Usecase Interactors - Graphics",
"patterns": ["bin/usecases/interactors/graphics/*.ts"]
},
{
"type": "Usecase Interactors - Tokens",
"patterns": ["bin/usecases/interactors/tokens/*.ts"]
},
{
"type": "Entities",
"patterns": ["bin/entities/**/*.ts"]
}
],
"output": [
{
"path": "images/arkit.svg",
"groups": [
{
"first": true,
"type": "Main",
"components": ["Main"]
},
{
"type": "App",
"components": ["App"]
},
{
"type": "Controllers",
"components": ["Controllers"]
},
{
"type": "Usecases",
"components": ["Usecases"]
},
{
"type": "Usecase Interactors - Common",
"components": ["Usecase Interactors - Common"]
},
{
"type": "Usecase Interactors - Elements",
"components": ["Usecase Interactors - Elements"]
},
{
"type": "Usecase Interactors - Graphics",
"components": ["Usecase Interactors - Graphics"]
},
{
"type": "Usecase Interactors - Tokens",
"components": ["Usecase Interactors - Tokens"]
},
{
"type": "Entities",
"components": ["Entities"]
}
]
}
]
}