@pronto-tools-and-more/files 5.5.0 → 5.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Configuration for pronto",
4
+ "type": "object",
5
+ "properties": {
6
+ "appId": {
7
+ "type": "string",
8
+ "description": "App Id of the project"
9
+ },
10
+ "errorColor": {
11
+ "type": "string",
12
+ "description": "Color of SCSS errors"
13
+ },
14
+ "platform": {
15
+ "type": "string",
16
+ "description": "Platform to use for the preview",
17
+ "enum": ["ios", "android", "web"]
18
+ },
19
+ "mode": {
20
+ "type": "string",
21
+ "description": "Whether or not to use include all experience builder files in version control",
22
+ "enum": ["slim", "fat"]
23
+ },
24
+ "splitViews": {
25
+ "type": "boolean",
26
+ "description": "Whether or not to use multiple files for views.json",
27
+ "default": false
28
+ }
29
+ }
30
+ }