-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
54 lines (54 loc) · 2.42 KB
/
tsconfig.base.json
File metadata and controls
54 lines (54 loc) · 2.42 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
{
"compilerOptions": {
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2022"],
"module": "ES2022",
"moduleResolution": "bundler",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"baseUrl": ".",
"paths": {
"@ngaf/design-tokens": ["libs/design-tokens/src/index.ts"],
"@ngaf/ag-ui": ["libs/ag-ui/src/public-api.ts"],
"@ngaf/a2ui": ["libs/a2ui/src/index.ts"],
"@ngaf/chat": ["libs/chat/src/public-api.ts"],
"@ngaf/chat/debug": ["libs/chat/debug/public-api.ts"],
"@ngaf/chat/testing": ["libs/chat/testing/public-api.ts"],
"@ngaf/cockpit-docs": ["libs/cockpit-docs/src/index.ts"],
"@ngaf/cockpit-langgraph-streaming-python": [
"cockpit/langgraph/streaming/python/src/index.ts"
],
"@ngaf/cockpit-registry": ["libs/cockpit-registry/src/index.ts"],
"@ngaf/cockpit-shell": ["libs/cockpit-shell/src/index.ts"],
"@ngaf/cockpit-telemetry": ["libs/cockpit-telemetry/src/index.ts"],
"@ngaf/cockpit-testing": ["libs/cockpit-testing/src/index.ts"],
"@ngaf/cockpit-ui": ["libs/cockpit-ui/src/index.ts"],
"@ngaf/db": ["libs/db/src/index.ts"],
"@ngaf/example-layouts": ["libs/example-layouts/src/public-api.ts"],
"@ngaf/langgraph": ["libs/langgraph/src/public-api.ts"],
"@ngaf/licensing": ["libs/licensing/src/index.ts"],
"@ngaf/licensing/testing": ["libs/licensing/src/testing.ts"],
"@ngaf/marketing-agent": ["marketing/agent/src/index.ts"],
"@ngaf/marketing-assets": ["marketing/assets/src/index.ts"],
"@ngaf/marketing-channels": ["marketing/channels/src/index.ts"],
"@ngaf/marketing-metrics": ["marketing/metrics/src/index.ts"],
"@ngaf/render": ["libs/render/src/public-api.ts"],
"@ngaf/telemetry": ["libs/telemetry/src/index.ts"],
"@ngaf/telemetry/browser": ["libs/telemetry/src/browser/public-api.ts"],
"@ngaf/telemetry/node": ["libs/telemetry/src/node/index.ts"],
"@ngaf/telemetry/shared": ["libs/telemetry/src/shared/public-api.ts"],
"@ngaf-internal/e2e-harness": ["libs/e2e-harness/src/index.ts"],
"@ngaf-internal/e2e-harness/global-teardown": ["libs/e2e-harness/src/global-teardown.ts"]
},
"skipLibCheck": true,
"strict": true,
"target": "es2022"
}
}