-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
54 lines (54 loc) · 2.62 KB
/
tsconfig.base.json
File metadata and controls
54 lines (54 loc) · 2.62 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": {
"@threadplane/design-tokens": ["libs/design-tokens/src/index.ts"],
"@threadplane/ag-ui": ["libs/ag-ui/src/public-api.ts"],
"@threadplane/a2ui": ["libs/a2ui/src/index.ts"],
"@threadplane/chat": ["libs/chat/src/public-api.ts"],
"@threadplane/chat/debug": ["libs/chat/debug/public-api.ts"],
"@threadplane/chat/testing": ["libs/chat/testing/public-api.ts"],
"@threadplane/cockpit-docs": ["libs/cockpit-docs/src/index.ts"],
"@threadplane/cockpit-langgraph-streaming-python": [
"cockpit/langgraph/streaming/python/src/index.ts"
],
"@threadplane/cockpit-registry": ["libs/cockpit-registry/src/index.ts"],
"@threadplane/cockpit-shell": ["libs/cockpit-shell/src/index.ts"],
"@threadplane/cockpit-telemetry": ["libs/cockpit-telemetry/src/index.ts"],
"@threadplane/cockpit-testing": ["libs/cockpit-testing/src/index.ts"],
"@threadplane/cockpit-ui": ["libs/cockpit-ui/src/index.ts"],
"@threadplane/db": ["libs/db/src/index.ts"],
"@threadplane/example-layouts": ["libs/example-layouts/src/public-api.ts"],
"@threadplane/langgraph": ["libs/langgraph/src/public-api.ts"],
"@threadplane/licensing": ["libs/licensing/src/index.ts"],
"@threadplane/licensing/testing": ["libs/licensing/src/testing.ts"],
"@threadplane/marketing-agent": ["marketing/agent/src/index.ts"],
"@threadplane/marketing-assets": ["marketing/assets/src/index.ts"],
"@threadplane/marketing-channels": ["marketing/channels/src/index.ts"],
"@threadplane/marketing-metrics": ["marketing/metrics/src/index.ts"],
"@threadplane/render": ["libs/render/src/public-api.ts"],
"@threadplane/telemetry": ["libs/telemetry/src/index.ts"],
"@threadplane/telemetry/browser": ["libs/telemetry/src/browser/public-api.ts"],
"@threadplane/telemetry/node": ["libs/telemetry/src/node/index.ts"],
"@threadplane/telemetry/shared": ["libs/telemetry/src/shared/public-api.ts"],
"@threadplane-internal/e2e-harness": ["libs/e2e-harness/src/index.ts"],
"@threadplane-internal/e2e-harness/global-teardown": ["libs/e2e-harness/src/global-teardown.ts"]
},
"skipLibCheck": true,
"strict": true,
"target": "es2022"
}
}