-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgenerate-react-cli.json
More file actions
42 lines (42 loc) · 1.28 KB
/
generate-react-cli.json
File metadata and controls
42 lines (42 loc) · 1.28 KB
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
{
"usesTypeScript": true,
"usesCssModule": false,
"cssPreprocessor": "scss",
"testLibrary": "Testing Library",
"component": {
"default": {
"customTemplates": {
"component": "templates/component/TemplateName.tsx",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/components",
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": true
},
"page": {
"customTemplates": {
"component": "templates/component/TemplateName.tsx",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/pages",
"withLazy": true,
"withStory": false,
"withStyle": true,
"withTest": true
},
"layout": {
"customTemplates": {
"component": "templates/component/TemplateName.tsx",
"test": "templates/component/TemplateName.test.tsx"
},
"path": "src/layout",
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": true
}
},
"usesStyledComponents": false
}