-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.json
More file actions
52 lines (52 loc) · 1.11 KB
/
compile.json
File metadata and controls
52 lines (52 loc) · 1.11 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
{
"$schema": "https://raw.githubusercontent.com/qooxdoo/qooxdoo-compiler/master/source/resource/qx/tool/schema/compile-1-0-0.json",
"targets": [
{
"type": "source",
"outputPath": "output/source",
"bundle": {
"include": "qx.*"
}
},
{
"type": "build",
"outputPath": "output/build"
}
],
"defaultTarget": "source",
"locales": [
"en"
],
"applications": [
{
"class": "mqtt.Application",
"theme": "",
"name": "mqtt",
"type": "node",
"include": [
"qx.core.BaseInit"
],
"exclude": [
"qx.bom.Selector",
"qx.bom.client.Html",
"qx.event.handler.Pointer",
"qx.event.handler.Gesture",
"qx.event.handler.PointerCore"
]
},
{
"class": "qxl.testtapper.Application",
"name": "testtapper",
"theme": "qx.theme.Simple",
"title": "Qooxdoo TestTAPper",
"environment": {
"qx.icontheme": "Tango",
"testtapper.testNameSpace": "mqtt.test"
},
"include": [
"mqtt.test.*"
],
"exclude": []
}
]
}