-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcompile-test.json
71 lines (71 loc) · 1.6 KB
/
compile-test.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
71
{
"$schema": "https://qooxdoo.org/schema/compile-1-0-0.json",
"libraries": [
"src/client/bibliograph",
"src/server/modules/z3950/client",
"src/server/modules/webservices/client",
"src/server/modules/backup/client",
"src/lib/incubator.qx.io.jsonrpc"
],
"environment": {
"app.version": "set by compile.js",
"qx.debug": true,
"qx.icontheme": "Tango",
"qx.test.delay.scale": 10,
"module.objectid": true,
"app.serverUrl": "src/server/test",
"qcl.io.jsonrpc.token-in-params": true
},
"locales": [
"en",
"de"
],
"defaultTarget": "source",
"targets": [
{
"description": "The local 'source' target for development",
"type": "source",
"environment": {
"app.mode": "development",
"qx.buildType": "source"
},
"outputPath": "compiled/source",
"babelOptions": {
"targets": "Chrome >= 72, Firefox >= 64, edge >= 18"
},
"bundle": {
"include": [
"qx.*",
"qxl.*"
],
"exclude": [
"bibliograph.test.*",
"qx.test.io.jsonrpc.*"
]
}
}
],
"applications": [
{
"class": "qxl.testtapper.Application",
"title": "Bibliograph Tests",
"theme": "qx.theme.Simple",
"name": "bibliograph-test",
"include": [
"bibliograph.test.*"
],
"environment": {
"qx.icontheme": "Tango",
"testtapper.testNameSpace": "bibliograph.test"
}
}
],
"eslintConfig": {
"globals": {
"JSZip": false
},
"parserOptions": {
"ecmaVersion": 2017
}
}
}