-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
77 lines (77 loc) · 3.13 KB
/
tsconfig.base.json
File metadata and controls
77 lines (77 loc) · 3.13 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
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
77
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"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": {
"@agenstra/code": ["tools/code/src/index.ts"],
"@forepath/framework/backend": [
"libs/domains/framework/backend/index.ts"
],
"@forepath/framework/backend/feature-agent-controller": [
"libs/domains/framework/backend/feature-agent-controller/src/index.ts"
],
"@forepath/framework/backend/feature-agent-manager": [
"libs/domains/framework/backend/feature-agent-manager/src/index.ts"
],
"@forepath/framework/backend/feature-billing-manager": [
"libs/domains/framework/backend/feature-billing-manager/src/index.ts"
],
"@forepath/framework/frontend": [
"libs/domains/framework/frontend/index.ts"
],
"@forepath/framework/frontend/data-access-agent-console": [
"libs/domains/framework/frontend/data-access-agent-console/src/index.ts"
],
"@forepath/framework/frontend/data-access-billing-console": [
"libs/domains/framework/frontend/data-access-billing-console/src/index.ts"
],
"@forepath/framework/frontend/data-access-portal": [
"libs/domains/framework/frontend/data-access-portal/src/index.ts"
],
"@forepath/framework/frontend/feature-agent-console": [
"libs/domains/framework/frontend/feature-agent-console/src/index.ts"
],
"@forepath/framework/frontend/feature-billing-console": [
"libs/domains/framework/frontend/feature-billing-console/src/index.ts"
],
"@forepath/framework/frontend/feature-docs": [
"libs/domains/framework/frontend/feature-docs/src/index.ts"
],
"@forepath/framework/frontend/feature-portal": [
"libs/domains/framework/frontend/feature-portal/src/index.ts"
],
"@forepath/framework/frontend/util-configuration": [
"libs/domains/framework/frontend/util-configuration/src/index.ts"
],
"@forepath/framework/frontend/util-cookie-consent": [
"libs/domains/framework/frontend/util-cookie-consent/src/index.ts"
],
"@forepath/framework/frontend/util-docs-parser": [
"libs/domains/framework/frontend/util-docs-parser/src/index.ts"
],
"@forepath/identity/backend": ["libs/domains/identity/backend/index.ts"],
"@forepath/identity/frontend": [
"libs/domains/identity/frontend/index.ts"
],
"@agenstra/ai": ["tools/ai/src/index.ts"],
"@agenstra/sbom": ["tools/sbom/src/index.ts"],
"@forepath/shared/backend": ["libs/domains/shared/backend/index.ts"],
"@forepath/shared/frontend": ["libs/domains/shared/frontend/index.ts"],
"@forepath/shared/keycloak": ["libs/domains/shared/keycloak/index.ts"],
"@forepath/shared/shared": ["libs/domains/shared/shared/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}