source: trip-planner-front/node_modules/stylus-loader/dist/options.json@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.4 KB
Line 
1{
2 "title": "Stylus Loader options",
3 "type": "object",
4 "properties": {
5 "implementation": {
6 "description": "The implementation of the `Stylus` to be used (https://github.com/webpack-contrib/stylus-loade#implementation).",
7 "anyOf": [
8 {
9 "type": "string"
10 },
11 {
12 "instanceof": "Function"
13 }
14 ]
15 },
16 "stylusOptions": {
17 "description": "Options to pass through to `Stylus` (https://github.com/webpack-contrib/stylus-loader#stylusoptions).",
18 "anyOf": [
19 {
20 "type": "object",
21 "additionalProperties": true
22 },
23 {
24 "instanceof": "Function"
25 }
26 ]
27 },
28 "sourceMap": {
29 "description": "Enables/Disables generation of source maps (https://github.com/webpack-contrib/stylus-loader#sourcemap).",
30 "type": "boolean"
31 },
32 "webpackImporter": {
33 "description": "Enables/Disables default `webpack` importer (https://github.com/webpack-contrib/stylus-loader#webpackimporter).",
34 "type": "boolean"
35 },
36 "additionalData": {
37 "description": "Prepends/Appends `Stylus` code to the actual entry file (https://github.com/webpack-contrib/stylus-loader#additionalData).",
38 "anyOf": [
39 {
40 "type": "string"
41 },
42 {
43 "instanceof": "Function"
44 }
45 ]
46 }
47 },
48 "additionalProperties": false
49}
Note: See TracBrowser for help on using the repository browser.