forked from suryatmodulus/harness-core-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
57 lines (57 loc) · 1.93 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
{
"compilerOptions": {
"baseUrl": "./src",
"target": "ES2018",
"module": "ESNext",
"lib": ["dom", "dom.iterable"],
"moduleResolution": "node",
"allowJs": true,
"checkJs": false,
"jsx": "react",
"sourceMap": true,
"noEmit": true,
"skipLibCheck": true,
"downlevelIteration": true,
"strict": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"importHelpers": true,
"typeRoots": ["node_modules/@types", "./typings"],
"resolveJsonModule": true,
"importsNotUsedAsValues": "error",
"noUnusedLocals": true,
"noUnusedParameters": true,
"paths": {
"@common/*": ["modules/10-common/*"],
"@notifications/*": ["modules/15-notifications/*"],
"@audit-trail/*": ["modules/18-audit-trail/*"],
"@rbac/*": ["modules/20-rbac/*"],
"@governance/*": ["modules/25-governance/*"],
"@sto/*": ["modules/27-sto/*"],
"@auth-settings/*": ["modules/33-auth-settings/*"],
"@secrets/*": ["modules/30-secrets/*"],
"@connectors/*": ["modules/35-connectors/*"],
"@user-profile/*": ["modules/35-user-profile/*"],
"@projects-orgs/*": ["modules/45-projects-orgs/*"],
"@delegates/*": ["modules/30-delegates/*"],
"@dashboards/*": ["modules/45-dashboards/*"],
"@gitsync/*": ["modules/40-gitsync/*"],
"@pipeline/*": ["modules/70-pipeline/*"],
"@templates-library/*": ["modules/72-templates-library/*"],
"@triggers/*": ["modules/72-triggers/*"],
"@cd/*": ["modules/75-cd/*"],
"@cf/*": ["modules/75-cf/*"],
"@ci/*": ["modules/75-ci/*"],
"@cv/*": ["modules/85-cv/*"],
"@sto-steps/*": ["modules/85-sto-steps/*"],
"@ce/*": ["modules/75-ce/*"],
"@wings-software/*": ["../node_modules/@harness/*"]
}
},
"types": ["cypress"],
"include": ["src/"],
"exclude": ["node_modules"]
}