forked from qooxdoo/qooxdoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compileServer.json
70 lines (70 loc) · 1.41 KB
/
compileServer.json
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
{
"targets": [
{
"type": "build",
"outputPath": "lib",
"minify": "off",
"babelOptions": {
"targets": "node >= 10"
}
}
],
"defaultTarget": "build",
"locales": [
"en"
],
"libraries": [
"./framework"
],
"ignores" : [
"XPathResult",
"XMLHttpRequest",
"XMLSerializer",
"XPathEvaluator",
"history.*",
"ActiveXObject",
"DOMParser",
"ImageHtml",
"alert",
"Image"
],
"applications": [
{
"class": "qx.application.Native",
"name": "qx_server",
"type": "node",
"environment": {
"qx.debug": false
},
"include": [
"qx.*",
"qx.dev.unit.TestLoaderBasic",
"qx.dev.unit.Sinon"
],
"exclude": [
"q",
"qx.test.*",
"qxWeb",
"qx.module.*",
"qx.dev.unit.TestLoader",
"qx.dev.unit.TestLoaderInline",
"qx.dev.unit.TestLoaderMobile",
"qx.dev.unit.TestLoaderNative",
"qx.ui.*",
"qx.log.appender.Native",
"qx.log.appender.Element",
"qx.bom.Stylesheet",
"qx.bom.Selector",
"qx.bom.MediaQuery",
"qx.bom.Flash",
"qx.bom.Vml",
"qx.bom.client.Html",
"qx.bom.client.Plugin",
"qx.bom.client.Pdfjs",
"qx.event.handler.Pointer",
"qx.event.handler.Gesture",
"qx.event.handler.PointerCore"
]
}
]
}