-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-react-cli.json
39 lines (39 loc) · 1.12 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
{
"usesTypeScript": false,
"component": {
"hook": {
"customTemplates": {
"component": ".generate-react-cli/hook/TemplateName.hook.ts",
"types": ".generate-react-cli/hook/TemplateName.types.ts",
"test": ".generate-react-cli/hook/TemplateName.test.ts",
"index": ".generate-react-cli/hook/index.ts"
},
"path": "src/hooks",
"withTypes": true,
"withTest": true,
"withIndex": true
},
"validator": {
"customTemplates": {
"component": ".generate-react-cli/validator/TemplateName.validator.ts",
"types": ".generate-react-cli/validator/TemplateName.types.ts",
"test": ".generate-react-cli/validator/TemplateName.test.ts",
"index": ".generate-react-cli/validator/index.ts"
},
"path": "src/validators",
"withTypes": true,
"withTest": true,
"withIndex": true
},
"default": {
"path": "src/components",
"withStyle": true,
"withTest": true,
"withStory": true,
"withLazy": true
}
},
"usesCssModule": true,
"cssPreprocessor": "css",
"testLibrary": "Testing Library"
}