forked from EliEladElrom/next-must-have-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-react-cli.json
88 lines (88 loc) · 2.64 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
{
"usesTypeScript": true,
"usesCssModule": false,
"component": {
"default": {
"path": "src/components",
"withStyle": true,
"withStory": true,
"withLazy": false,
"withTest": false
},
"story": {
"customTemplates": {
"component": "devops/templates/story-component/TemplateName.tsx",
"story": "devops/templates/story-component/TemplateName.stories.tsx",
"lazy": "devops/templates/story-component/index.ts"
},
"path": "src/components",
"withStyle": false,
"withTest": false,
"withStory": true,
"withLazy": true
},
"complex-story": {
"customTemplates": {
"component": "devops/templates/story-complex-component/TemplateName.tsx",
"style": "devops/templates/story-complex-component/TemplateName.css.ts",
"story": "devops/templates/story-complex-component/TemplateName.stories.tsx",
"lazy": "devops/templates/story-complex-component/index.ts"
},
"path": "src/components",
"withStyle": true,
"withTest": false,
"withStory": true,
"withLazy": true
},
"d3": {
"customTemplates": {
"component": "devops/templates/d3/TemplateName.tsx",
"style": "devops/templates/component/TemplateName.scss"
},
"path": "src/components",
"withStyle": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"d3class": {
"customTemplates": {
"component": "devops/templates/d3class/TemplateName.tsx",
"style": "devops/templates/component/TemplateName.scss"
},
"path": "src/components",
"withStyle": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"d3WidgetComponent": {
"customTemplates": {
"component": "devops/templates/d3widgetcomponent/TemplateName.tsx",
"helper": "devops/templates/d3widgetcomponent/TemplateNameHelper.tsx",
"style": "devops/templates/d3widgetcomponent/TemplateName.css.ts"
},
"path": "src/components",
"withStyle": true,
"withHelper": true,
"withTest": false,
"withStory": false,
"withLazy": false
},
"d3Widget": {
"customTemplates": {
"component": "devops/templates/d3widget/TemplateName.tsx",
"style": "devops/templates/d3widget/TemplateName.css.ts",
"type": "devops/templates/d3widget/types.ts"
},
"path": "src/widgets",
"withStyle": true,
"withType": true,
"withTest": false,
"withStory": false,
"withLazy": false
}
},
"cssPreprocessor": "css",
"testLibrary": "Testing Library"
}