source: trip-planner-front/node_modules/sass-loader/dist/options.json@ e29cc2e

Last change on this file since e29cc2e 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": "Sass Loader options",
3 "type": "object",
4 "properties": {
5 "implementation": {
6 "description": "The implementation of the sass to be used (https://github.com/webpack-contrib/sass-loader#implementation).",
7 "anyOf": [
8 {
9 "type": "string"
10 },
11 {
12 "type": "object"
13 }
14 ]
15 },
16 "sassOptions": {
17 "description": "Options for `node-sass` or `sass` (`Dart Sass`) implementation. (https://github.com/webpack-contrib/sass-loader#implementation).",
18 "anyOf": [
19 {
20 "type": "object",
21 "additionalProperties": true
22 },
23 {
24 "instanceof": "Function"
25 }
26 ]
27 },
28 "additionalData": {
29 "description": "Prepends/Appends `Sass`/`SCSS` code before the actual entry file (https://github.com/webpack-contrib/sass-loader#additionaldata).",
30 "anyOf": [
31 {
32 "type": "string"
33 },
34 {
35 "instanceof": "Function"
36 }
37 ]
38 },
39 "sourceMap": {
40 "description": "Enables/Disables generation of source maps (https://github.com/webpack-contrib/sass-loader#sourcemap).",
41 "type": "boolean"
42 },
43 "webpackImporter": {
44 "description": "Enables/Disables default `webpack` importer (https://github.com/webpack-contrib/sass-loader#webpackimporter).",
45 "type": "boolean"
46 }
47 },
48 "additionalProperties": false
49}
Note: See TracBrowser for help on using the repository browser.