forked from ryanbay/parallax.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
koala-config.json
46 lines (35 loc) · 1.3 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
46
// Sass project settings, you can edit it and set custom settings.
{
// The mappings of source directory and output directory
"mappings": [
// {
// "src": "path/to/source",
// "dest": "path/to/output"
// }
],
// Add the ignore rules that Koala will not search them.
// e.g. ["*.json", "*.txt", "test", "path/libs"]
"ignores": ["*.css", "*.js"],
// Compile options of Sass.
"options": {
// Output style. Can be nested (default), compact, compressed, or expanded.
"outputStyle": "compressed",
// Emit comments in the generated CSS indicating the corresponding source line.
"lineComments": false,
// Emit extra information in the generated CSS that can be used by the FireSass Firebug plugin.
"debugInfo": false,
// Create sourcemap files next to the generated CSS files
"sourceMap": true,
// Use Unix-style newlines in written files.
"unixNewlines": false,
"autoprefix": true
},
// Other compile options, use the full name of options.
// e.g, ["--scss", ... ,"--no-cache"].
// Run the command 'sass -h' to see more options.
"customOptions": [],
// An array of filesystem paths or importers which should be searched for Sass templates imported with the @import directive.
"includePaths": [],
// A array of ruby libraries, require them before running Sass.
"requireLibs": []
}