forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.27 KB
/
Copy pathtsconfig.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": false,
"module": "ES2020",
"moduleResolution": "Node",
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@copilotkit/angular": [
"../../packages/angular/dist/index.d.ts",
"../../packages/angular/dist/fesm2022/copilotkitnext-angular.mjs"
],
"@copilotkit/core": [
"../../packages/core/dist/index.d.ts",
"../../packages/core/dist/index.mjs",
"../../packages/core/src/index.ts"
],
"@copilotkit/shared": [
"../../packages/shared/dist/index.d.ts",
"../../packages/shared/dist/index.mjs",
"../../packages/shared/src/index.ts"
],
"@copilotkit/web-inspector": [
"../../packages/web-inspector/dist/index.d.ts",
"../../packages/web-inspector/src/index.ts"
]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"exclude": ["dist", "node_modules"]
}