-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
43 lines (43 loc) · 1.65 KB
/
tsconfig.base.json
File metadata and controls
43 lines (43 loc) · 1.65 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
{
"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/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-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/partial-json": ["libs/partial-json/src/index.ts"],
"@ngaf/render": ["libs/render/src/public-api.ts"]
},
"skipLibCheck": true,
"strict": true,
"target": "es2022"
}
}