-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathgenerate-react-cli.json
44 lines (44 loc) · 1.11 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
{
"usesTypeScript": true,
"usesCssModule": true,
"cssPreprocessor": "scss",
"testLibrary": "Testing Library",
"component": {
"default": {
"path": "src/renderer/components",
"withIndex": false,
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": false,
"customTemplates": {
"component": "templates/component/index.tsx",
"style": "templates/component/index.module.scss"
}
},
"chart": {
"path": "src/renderer/components",
"withIndex": false,
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": false,
"customTemplates": {
"component": "templates/chart/index.tsx",
"style": "templates/chart/index.module.scss"
}
},
"content": {
"path": "src/renderer/components",
"withIndex": false,
"withLazy": false,
"withStory": false,
"withStyle": true,
"withTest": false,
"customTemplates": {
"component": "templates/content/index.tsx",
"style": "templates/content/index.module.scss"
}
}
}
}