source: trip-planner-front/node_modules/postcss-loader/dist/options.json

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

initial commit

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{
2 "title": "PostCSS Loader options",
3 "type": "object",
4 "properties": {
5 "postcssOptions": {
6 "description": "Options to pass through to `Postcss`.",
7 "anyOf": [
8 {
9 "type": "object",
10 "additionalProperties": true,
11 "properties": {
12 "config": {
13 "description": "Allows to specify PostCSS Config Path (https://github.com/postcss/postcss-loader#config)",
14 "anyOf": [
15 {
16 "description": "Allows to specify the path to the configuration file",
17 "type": "string"
18 },
19 {
20 "description": "Enables/Disables autoloading config",
21 "type": "boolean"
22 }
23 ]
24 }
25 }
26 },
27 {
28 "instanceof": "Function"
29 }
30 ]
31 },
32 "execute": {
33 "description": "Enables/Disables PostCSS parser support in 'CSS-in-JS' (https://github.com/postcss/postcss-loader#execute)",
34 "type": "boolean"
35 },
36 "sourceMap": {
37 "description": "Enables/Disables generation of source maps (https://github.com/postcss/postcss-loader#sourcemap)",
38 "type": "boolean"
39 },
40 "implementation": {
41 "description": "The implementation of postcss to use, instead of the locally installed version (https://github.com/postcss/postcss-loader#implementation)",
42 "anyOf": [
43 {
44 "type": "string"
45 },
46 {
47 "instanceof": "Function"
48 }
49 ]
50 }
51 },
52 "additionalProperties": false
53}
Note: See TracBrowser for help on using the repository browser.