-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate-react-cli.json
executable file
·80 lines (80 loc) · 1.99 KB
/
generate-react-cli.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
{
"usesTypeScript": true,
"usesStyledComponents": true,
"testLibrary": "None",
"component": {
"default": {
"path": "src/components",
"customTemplates": {
"component": "./Templates/components/TemplateName.tsx",
"style": "./Templates/components/TemplateName.styles.css"
},
"withStyle": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"api-route": {
"path": "src/app/api",
"customTemplates": {
"component": "./Templates/api/route.ts"
},
"withStyle": false,
"withTest": false,
"withStory": false,
"withLazy": false
},
"provider": {
"path": "src/providers",
"customTemplates": {
"component": "./Templates/providers/TemplateName.tsx"
},
"withStyle": false,
"withTest": false,
"withStory": false,
"withLazy": false
},
"path-with-layout": {
"path": "src/app",
"customTemplates": {
"component": "./Templates/path-with-layout/page.tsx",
"style": "./Templates/path-with-layout/layout.tsx"
},
"withStyle": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"server-path": {
"path": "src/app",
"customTemplates": {
"component": "./Templates/path/page.tsx",
"style": "./Templates/path/TemplateName.style.css"
},
"withStyle": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"icon": {
"path": "src/components/icons",
"customTemplates": {
"component": "./Templates/icon/TemplateName.tsx"
},
"withStyle": false,
"withTest": false,
"withStory": false,
"withLazy": false
},
"client-path": {
"path": "src/app",
"customTemplates": {
"component": "./Templates/client-path/page.tsx"
},
"withStyle": false,
"withTest": false,
"withStory": false,
"withLazy": false
}
}
}