-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathmanifest_base.json
More file actions
91 lines (91 loc) · 1.67 KB
/
manifest_base.json
File metadata and controls
91 lines (91 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"build": {
"BUILD": "$(MODDABLE)/build",
"MODULES": "$(MODDABLE)/modules",
"COMMODETTO": "$(MODULES)/commodetto",
"PIU": "$(MODULES)/piu"
},
"creation": {
"keys": {
"initial": 32,
"incremental": 32,
"name": 53,
"symbol": 3
},
"parser": {
"buffer": 1024,
"table": 17
},
"main": "main"
},
"include": [
"$(MODULES)/files/resource/manifest.json"
],
"modules": {
"*": [
"$(MODULES)/base/instrumentation/modInstrumentation"
]
},
"strip": "*",
"typescript": {
"tsconfig": {
"compilerOptions": {
"types": [
"$(MODDABLE)/xs/includes/xs",
"$(MODDABLE)/typings/global"
]
}
}
},
"platforms": {
"esp": {
"include": "$(BUILD)/devices/esp/manifest.json",
"modules": {
"*": [
"$(MODULES)/files/preference/esp/*",
"$(MODULES)/network/socket/lwip/modLwipSafe"
]
}
},
"esp32": {
"include": "$(BUILD)/devices/esp32/manifest.json",
"modules": {
"*": "$(MODULES)/network/socket/lwip/modLwipSafe"
}
},
"pico": {
"include": "$(BUILD)/devices/pico/manifest.json"
},
"gecko": {
"include": "$(BUILD)/devices/gecko/manifest.json"
},
"qca4020": {
"include": "$(BUILD)/devices/qca4020/manifest.json"
},
"nrf52": {
"include": "$(BUILD)/devices/nrf52/manifest.json",
"creation": {
"static": 131072,
"chunk": {
"initial": 32768
},
"heap": {
"initial": 2048
},
"stack": 512
}
},
"lin": {
"include": "$(BUILD_SIMULATOR)/manifest.json"
},
"mac": {
"include": "$(BUILD_SIMULATOR)/manifest.json"
},
"win": {
"include": "$(BUILD_SIMULATOR)/manifest.json"
},
"wasm": {
"include": "$(BUILD_SIMULATOR)/manifest.json"
}
}
}