-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate-react-cli.json
127 lines (127 loc) · 3.66 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"usesTypeScript": true,
"usesCssModule": false,
"cssPreprocessor": "scss",
"testLibrary": "Enzyme",
"component": {
"default": {
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"page": {
"customTemplates": {
"component": "templates/page/TemplateName.tsx",
"style": "templates/page/TemplateName.scss",
"test": "templates/page/TemplateName.test.tsx"
},
"path": "src/pages",
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": true
},
"layout": {
"customTemplates": {
"component": "templates/component/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/layout",
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": true
},
"d3": {
"customTemplates": {
"component": "templates/d3/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"d3class": {
"customTemplates": {
"component": "templates/d3class/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"recoil": {
"customTemplates": {
"component": "templates/recoil/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/recoil/TemplateName.test.tsx"
},
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"materialui": {
"customTemplates": {
"component": "templates/materialui/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"widget": {
"customTemplates": {
"component": "templates/widget/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/recoil/TemplateName.test.tsx"
},
"path": "src/Widgets",
"withStyle": true,
"withTest": true,
"withStory": false,
"withLazy": false
},
"d3WidgetComponent": {
"customTemplates": {
"component": "templates/d3widgetcomponent/TemplateName.tsx",
"helper": "templates/d3widgetcomponent/TemplateNameHelper.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/components",
"withStyle": true,
"withTest": true,
"withHelper": true,
"withStory": false,
"withLazy": false
},
"d3Widget": {
"customTemplates": {
"component": "templates/d3widget/TemplateName.tsx",
"style": "templates/component/TemplateName.scss",
"test": "templates/component/TemplateName.test.tsx",
"type": "templates/d3widget/types.ts"
},
"path": "src/widgets",
"withStyle": true,
"withTest": true,
"withType": true,
"withStory": false,
"withLazy": false
}
}
}