-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile.json
70 lines (70 loc) · 1.37 KB
/
compile.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
{
"$schema": "https://qooxdoo.org/schema/compile-1-0-0.json",
"targets": [
{
"type": "source",
"outputPath": "compiled/source",
"bundle": {
"include": "qx.*"
},
"babelOptions": {
"targets": "node >= 12"
}
},
{
"type": "build",
"outputPath": "compiled/build",
"babelOptions": {
"targets": "node >= 12"
}
}
],
"defaultTarget": "source",
"locales": [
"en"
],
"applications": [
{
"class": "qxl.testnode.Application",
"theme": "",
"name": "qxl.testnode",
"type": "node",
"include": [
"qx.core.BaseInit",
"qxl.testnode.test.*"
],
"exclude": [
"qx.bom.Selector",
"qx.bom.client.Html",
"qx.bom.client.Plugin",
"qx.event.handler.Pointer",
"qx.event.handler.Gesture",
"qx.event.handler.PointerCore"
],
"environment": {
"testnode.testNameSpace": "qxl.testnode.test"
}
}
],
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"@qooxdoo/qx"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"@qooxdoo/qx/no-illegal-private-usage": "error",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
]
}
}
}