-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
82 lines (82 loc) · 4.47 KB
/
Copy pathtsconfig.base.json
File metadata and controls
82 lines (82 loc) · 4.47 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
78
79
80
81
82
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2022",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["dom", "es2020", "esnext.array"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@cloud/*": ["apps/cloud/src/*"],
"@/shared/*": ["packages/ui/src/lib/*"],
"@/src/lib/*": ["packages/ui/src/lib/*"],
"@xpert-ai/adapter": ["legacies/adapter/src/index.ts"],
"@xpert-ai/analytics": ["packages/analytics/src/index.ts"],
"@xpert-ai/cloud/auth": ["libs/apps/auth/src/index.ts"],
"@xpert-ai/cloud/indicator-market": ["libs/apps/indicator-market/src/index.ts"],
"@xpert-ai/cloud/indicator-market/*": ["libs/apps/indicator-market/*"],
"@xpert-ai/cloud/state": ["libs/apps/state/src/index.ts"],
"@xpert-ai/cloud/state/*": ["libs/apps/state/src/lib/*"],
"@xpert-ai/cloud/state/constants": ["libs/apps/state/src/lib/constants.ts"],
"@xpert-ai/component-store": ["libs/component-store/src/index.ts"],
"@xpert-ai/components": ["libs/component-angular/src/index.ts"],
"@xpert-ai/components/*": ["libs/component-angular/*/index.ts", "libs/component-angular/*"],
"@xpert-ai/contracts": ["packages/contracts/src/index.ts"],
"@xpert-ai/copilot": ["legacies/copilot/src/index.ts"],
"@xpert-ai/ds-core": ["packages/core/src/index.ts"],
"@xpert-ai/core": ["libs/core-angular/src/index.ts"],
"@xpert-ai/formly": ["libs/formly/src/index.ts"],
"@xpert-ai/formly/*": ["libs/formly/*/index.ts", "libs/formly/*"],
"@xpert-ai/ocap-angular": ["packages/angular/src/index.ts"],
"@xpert-ai/ocap-angular/*": ["packages/angular/*/index.ts", "packages/angular/*"],
"@xpert-ai/ocap-core": ["packages/core/src/index.ts"],
"@xpert-ai/ocap-duckdb": ["legacies/duckdb/src/index.ts"],
"@xpert-ai/ocap-echarts": ["legacies/echarts/src/index.ts"],
"@xpert-ai/ocap-sql": ["packages/sql/src/index.ts"],
"@xpert-ai/ocap-xmla": ["packages/xmla/src/index.ts"],
"@xpert-ai/server-ai": ["packages/server-ai/src/index.ts"],
"@xpert-ai/server-auth": ["packages/auth/src/index.ts"],
"@xpert-ai/server-common": ["packages/common/src/index.ts"],
"@xpert-ai/server-config": ["packages/config/src/index.ts"],
"@xpert-ai/server-core": ["packages/server/src/index.ts"],
"@xpert-ai/store": ["packages/store/src/index.ts"],
"@xpert-ai/story": ["libs/story-angular/src/index.ts"],
"@xpert-ai/story/*": ["libs/story-angular/*/index.ts", "libs/story-angular/*"],
"@xpert-ai/plugin-agent-middlewares": ["packages/plugins/agent-middlewares/src/index.ts"],
"@xpert-ai/plugin-draft": ["packages/plugins/draft/src/index.ts"],
"@xpert-ai/plugin-integration-github": ["packages/plugins/integration-github/src/index.ts"],
"@xpert-ai/plugin-integration-lark": ["packages/plugins/integration-lark/src/index.ts"],
"@xpert-ai/plugin-ocr-paddle": ["packages/plugins/ocr-paddle/src/index.ts"],
"@xpert-ai/plugin-retriever-common": ["packages/plugins/retriever-common/src/index.ts"],
"@xpert-ai/plugin-sdk": ["packages/plugin-sdk/src/index.ts"],
"@xpert-ai/plugin-textsplitter-common": ["packages/plugins/textsplitter-common/src/index.ts"],
"@xpert-ai/plugin-tool-calculator": ["packages/plugins/tool-calculator/src/index.ts"],
"@xpert-ai/plugin-transformer-common": ["packages/plugins/transformer-common/src/index.ts"],
"@xpert-ai/plugin-trigger-schedule": ["packages/plugins/trigger-schedule/src/index.ts"],
"@xpert-ai/plugin-vlm-default": ["packages/plugins/vlm-default/src/index.ts"],
"@xpert-ai/plugin-vstore-chroma": ["packages/plugins/vstore-chroma/src/index.ts"],
"@xpert-ai/plugin-vstore-weaviate": ["packages/plugins/vstore-weaviate/src/index.ts"],
"ngx-echarts": ["legacies/ngx-echarts/src/public-api"],
"@xpert-ai/headless-ui": ["packages/ui/src/index.ts"],
"@xpert-ai/headless-ui/*": ["packages/ui/src/lib/*"]
},
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noUnusedLocals": false,
"esModuleInterop": true,
"noImplicitAny": false,
"strictNullChecks": false,
"noPropertyAccessFromIndexSignature": false
},
"exclude": ["node_modules", "tmp"]
}