You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Defines parameters for the Karma testing utility",
4
+
5
+
"type": "object",
6
+
"additionalProperties": false,
7
+
"properties": {
8
+
"karmaConfigPath": {
9
+
"title": "Path to the karma config file",
10
+
"description": "Sets the path to the Karma Configuration file to use. If one has not been created, this task will prompt the user to run it again with the --initkarma flag.",
"description": "Defines configuration for the SASS compilation task",
4
+
5
+
"type": "object",
6
+
"additionalProperties": false,
7
+
"properties": {
8
+
"preamble": {
9
+
"title": "Preamble Text",
10
+
"description": "An optional parameter for text to include in the generated typescript file.",
11
+
"type": "string"
12
+
},
13
+
14
+
"postamble": {
15
+
"title": "Postamble Text",
16
+
"description": "An optional parameter for text to include at the end of the generated typescript file.",
17
+
"type": "string"
18
+
},
19
+
20
+
"sassMatch": {
21
+
"title": "Sass File Glob Pattern",
22
+
"description": "An array of glob patterns for locating SASS files.",
23
+
"type": "string"
24
+
},
25
+
26
+
"useCSSModules": {
27
+
"title": "Use CSS Modules",
28
+
"description": "If this option is specified, files ending with .module.scss extension will automatically generate a corresponding TypeScript file. All classes will be appended with a hash to help ensure uniqueness on a page. This file can be imported directly, and will contain an object describing the mangled class names.",
29
+
"type": "boolean"
30
+
},
31
+
32
+
"dropCssFiles": {
33
+
"title": "Create CSS Files",
34
+
"description": "If true, we will generate a CSS in the lib folder. If false, the CSS is directly embedded into the TypeScript file",
"description": "Defines parameters for the webserver which is spun up by the Serve Task",
4
+
5
+
"type": "object",
6
+
"additionalProperties": false,
7
+
"properties": {
8
+
"api": {
9
+
"title": "API server configuration",
10
+
"description": "Parameters which configure the API server, which runs simultaneously and allows for mock testing",
11
+
12
+
"type": "object",
13
+
"additionalProperties": false,
14
+
"required": [ "port", "entryPath" ],
15
+
"properties": {
16
+
"port": {
17
+
"title": "API Port",
18
+
"description": "The port which the API server listens on",
19
+
"type": "number"
20
+
},
21
+
"entryPath": {
22
+
"title": "API Entry Point Path",
23
+
"description": "The path to the script to run as the API server",
24
+
"type": "string"
25
+
}
26
+
}
27
+
},
28
+
29
+
"initialPage": {
30
+
"title": "Initial Page",
31
+
"description": "The path to the page which should open automatically after this task completes",
32
+
"type": "string"
33
+
},
34
+
35
+
"port": {
36
+
"title": "Port",
37
+
"description": "The port on which to host the file server.",
38
+
"type": "number"
39
+
},
40
+
41
+
"https": {
42
+
"title": "HTTPS Mode",
43
+
"description": "If true, the server should run on HTTPS",
44
+
"type": "boolean"
45
+
},
46
+
47
+
"keyPath": {
48
+
"title": "HTTPS Key Path",
49
+
"description": "Path to the HTTPS key",
50
+
"type": "string"
51
+
},
52
+
53
+
"certPath": {
54
+
"title": "HTTPS Cert Path",
55
+
"description": "Path to the HTTPS cert",
56
+
"type": "string"
57
+
},
58
+
59
+
"pfxPath": {
60
+
"title": "HTTPS PFX Path",
61
+
"description": "Path to the HTTPS PFX cert",
62
+
"type": "string"
63
+
},
64
+
65
+
"tryCreateDevCertificate": {
66
+
"title": "Should Create Dev Certificate",
67
+
"description": "If true, when gulp-core-build-serve is initialized and a dev certificate doesn't already exist and hasn't been specified, attempt to generate one and trust it automatically.",
0 commit comments