-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathtsconfig.json
53 lines (53 loc) · 1.08 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
{
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"moduleResolution": "node",
"module": "esnext",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"jsx": "react",
"noUnusedParameters": true,
"noUnusedLocals": true,
"noEmitHelpers": true,
"importHelpers": true,
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"es7",
"es2017.object"
],
"paths": {
"choerodon-ui/lib/*": [
"./components/*"
],
"choerodon-ui/pro/lib/*": [
"./components-pro/*"
],
"choerodon-ui/dataset/*": [
"./components-dataset/*"
],
"choerodon-ui/shared/*": [
"./components-shared/*"
],
"choerodon-ui/dataset": [
"./components-dataset/index"
],
"choerodon-ui/shared": [
"./components-shared/index"
],
"axios": [
"./components-dataset/axios/_helpers/axios.d.ts"
]
}
},
"exclude": [
"node_modules",
"pro",
"lib",
"es",
"dataset",
"shared"
]
}