-
Notifications
You must be signed in to change notification settings - Fork 2
/
koala-config.json
45 lines (34 loc) · 1.27 KB
/
koala-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
// Less project settings, you can edit it and set custom settings.
{
// The mappings of source directory and output directory
"mappings": [
// {
// "src": "less/global.less",
// "dest": "css/global.css"
// }
],
// Add the ignore rules that Koala will not search them.
// e.g. ["*.json", "*.txt", "test", "path/libs"]
"ignores": ["*.css", "bootstrap", "_site"],
// Compile options of LESS.
"options": {
// Output style. Can be normal (default), compress.
"outputStyle": "normal",
// Outputs filename and line numbers, which will output the debug info within comments.
"lineComments": true,
// Outputs filename and line numbers, which will output the information within a fake media query which is compatible with the SASS format.
"debugInfo": false,
"strictMath": false,
"strictUnits": false,
// Create sourcemap files next to the generated CSS files
"sourceMap": true,
// auto add vendor prefixes to rules
"autoprefix": false
},
// Other compile options.
// e.g, ["--strict-imports", ... ,"--rootpath=URL"].
// Run the command 'lessc -h' to see more options.
"customOptions": [],
// An array of filesystem paths or importers which should be searched for LESS templates imported with the @import directive.
"includePaths": []
}