-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.yo-rc.json
52 lines (52 loc) · 1.17 KB
/
.yo-rc.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
{
"generator-cg-angular": {
"uirouter": true,
"partialDirectory": "partial/",
"directiveDirectory": "directive/",
"filterDirectory": "filter/",
"serviceDirectory": "service/",
"inject": {
"js": {
"file": "index.html",
"marker": "<!-- Add New Component JS Above -->",
"template": "<script src=\"<%= filename %>\"></script>"
},
"less": {
"relativeToModule": true,
"file": "<%= module %>.less",
"marker": "/* Add Component LESS Above */",
"template": "@import \"<%= filename %>\";"
}
},
"modules": [
{
"name": "tictactoe",
"file": "tictactoe/tictactoe.js"
},
{
"name": "home",
"file": "home/home.js"
},
{
"name": "soccer",
"file": "soccer/soccer.js"
},
{
"name": "carrace",
"file": "carrace/carrace.js"
},
{
"name": "grammarGamble",
"file": "grammarGamble/grammarGamble.js"
},
{
"name": "fight",
"file": "fight/fight.js"
},
{
"name": "alphabet",
"file": "alphabet/alphabet.js"
}
]
}
}