-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
36 lines (36 loc) · 1.84 KB
/
tsconfig.base.json
File metadata and controls
36 lines (36 loc) · 1.84 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@redhat-cloud-services/build-utils": ["packages/build-utils/src/index.ts"],
"@redhat-cloud-services/javascript-clients-shared": ["packages/shared/index.ts"],
"@redhat-cloud-services/compliance-client": ["packages/compliance/src/index.ts"],
"@redhat-cloud-services/config-manager-client": ["packages/config-manager/src/index.ts"],
"@redhat-cloud-services/entitlements-client": ["packages/entitlements/src/index.ts"],
"@redhat-cloud-services/insights-client": ["packages/insights/src/index.ts"],
"@redhat-cloud-services/host-inventory-client": ["packages/host-inventory/src/index.ts"],
"@redhat-cloud-services/integrations-client": ["packages/integrations/src/index.ts"],
"@redhat-cloud-services/notifications-client": ["packages/notifications/src/index.ts"],
"@redhat-cloud-services/patch-client": ["packages/patch/src/index.ts"],
"@redhat-cloud-services/quickstarts-client": ["packages/quickstarts/src/index.ts"],
"@redhat-cloud-services/rbac-client": ["packages/rbac/src/index.ts"],
"@redhat-cloud-services/remediations-client": ["packages/remediations/src/index.ts"],
"@redhat-cloud-services/sources-client": ["packages/sources/src/index.ts"],
"@redhat-cloud-services/topological-inventory-client": ["packages/topological-inventory/src/index.ts"],
"@redhat-cloud-services/vulnerabilities-client": ["packages/vulnerabilities/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}