-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodux.config.json
More file actions
33 lines (33 loc) · 839 Bytes
/
codux.config.json
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
{
"$schema": "https://wixplosives.github.io/codux-config-schema/codux.config.schema.json",
"boardGlobalSetup": "./src/_codux/boards-global-setup.ts",
"componentsDiscovery": {
"include": ["src/components/**"],
"exclude": [
"src/_codux/component-templates/**",
"src/components/common/**",
"src/components/tasks/**",
"src/components/fx/**",
"src/App.tsx"
]
},
"newComponent": {
"componentsPath": "src/components",
"templatesPath": "src/_codux/component-templates"
},
"safeRender": {
"maxInstancesPerComponent": 1000
},
"scripts": {
"install": {
"title": "Install",
"description": "Run install",
"command": "npm i",
"trigger": ["checkout", "pull", "setup"]
}
},
"styling": {
"solution": "scss modules"
},
"svgLoader": "both"
}