forked from zkoss/zk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
76 lines (76 loc) · 1.7 KB
/
tsconfig.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
72
73
74
75
76
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "es5",
"lib": [
"esnext",
"dom",
"ScriptHost"
],
"module": "commonjs",
"allowJs": true,
"noEmit": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noEmitHelpers": true,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
"typeRoots": [
"node_modules",
"node_modules/@types",
"../zkcml/node_modules"
],
"types": [
"zk",
"zul",
"zhtml",
"zkbind",
"stateless",
"zkmax",
"zkex",
"client-bind",
"webpack-env"
],
"paths": {
"@zk/*": [
"./zk/src/main/resources/web/js/zk/*"
],
"@zul/*": [
"./zul/src/main/resources/web/js/zul/*"
],
"@zhtml/*": [
"./zhtml/src/main/resources/web/js/zhtml/*"
],
"@stateless/*": [
"./stateless/src/main/resources/web/js/stateless/*"
],
"@zkex/*": [
"../zkcml/zkex/src/main/resources/web/js/zkex/*"
],
"@zkmax/*": [
"../zkcml/zkmax/src/main/resources/web/js/zkmax/*"
],
"@client-bind/*": [
"../zkcml/client-bind/src/main/resources/web/js/clientbind/*"
]
}
},
"include": [
"zk/src/main/resources/web/js",
"zul/src/main/resources/web/js",
"zkbind/src/main/resources/web/js",
"zhtml/src/main/resources/web/js",
"stateless/src/main/resources/web/js"
],
"exclude": [
"node_modules",
"zktest",
"**/build/*",
"**/codegen/*"
]
}