-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.config.json
62 lines (48 loc) · 1.19 KB
/
default.config.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
{
"componentsRootDirs": ["src/components"],
"componentAssetsDir": "assets",
"componentJSON": "component.json",
"staticRootDir": "static",
"destinationDir": "build",
"destinationComponentsDir": "components",
"temporaryDir": "__csstime-tmp",
"spritesDir": "sprites",
"imagesDir": "images",
"svgDir": "svg",
"svgSymbolsDir": "symbols",
"fontsDir": "fonts",
"lessDir": "less",
"sassDir": "sass",
"cssDir": "css",
"otherDir": "other",
"lessThemesDir": "themes",
"sassThemesDir": "themes",
"preprocessor": "less",
"preprocessorsConfig": {
"less": {
"ext": "less"
},
"sass": {
"ext": "scss"
}
},
"stylesFileName": "styles",
"spritesFileName": "sprites",
"svgSymbolsFileName": "symbols",
"themedStylesFileNames": [],
"indexComponentName": "document",
"useNotify": true,
"useImageSprites": true,
"useImageOptimization": true,
"useSvgOptimization": true,
"useSvgSymbols": false,
"svgSymbolsPrefix": "icon-",
"useNormalizeCss": false,
"usePostCSS": true,
"enableCssStructureMinimization": false,
"shouldClearDestinationDuringRelease": false,
"watchInterval": 1000,
"banner": "/**\n * csstime\n * <%now%>\n */\n",
"cdnPath": "/components/",
"variables": {}
}