-
Notifications
You must be signed in to change notification settings - Fork 29
/
tsconfig.json
61 lines (61 loc) · 1.17 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
{
"compilerOptions": {
"outDir": "./cdap_dist",
"allowJs": true,
"checkJs": false,
"module": "esnext",
"target": "es5",
"jsx": "react",
"skipLibCheck": true,
"moduleResolution": "node",
"sourceMap": true,
"importHelpers": false,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"lib": [
"es2015",
"dom",
"es2017"
],
"typeRoots": [
"./typings",
"./node_modules/@types"
],
"baseUrl": ".",
"paths": {
"components/*": [
"./app/cdap/components/*"
],
"services/*": [
"./app/cdap/services/*"
],
"api/*": [
"./app/cdap/api/*"
],
"lib/*": [
"./app/cdap/lib/*"
],
"styles/*": [
"./app/cdap/styles/*"
],
"test-utils": [
"./jest/test-utils"
],
"@cdap-ui/*": [
"./app/cdap/*"
]
}
},
"include": [
"app/cdap/**/*.js",
"app/cdap/**/*.ts",
"app/cdap/**/*.jsx",
"app/cdap/**/*.tsx",
"./node_modules/@types/**/*.d.ts",
"./node_modules/jsplumb/index.d.ts",
],
"exclude": [
"node_modules",
"server/**/*.js"
]
}