-
Notifications
You must be signed in to change notification settings - Fork 767
Expand file tree
/
Copy pathtsconfig.json
More file actions
116 lines (116 loc) · 4.43 KB
/
Copy pathtsconfig.json
File metadata and controls
116 lines (116 loc) · 4.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"esModuleInterop": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"allowImportingTsExtensions": true,
"outDir": "dist",
"rootDir": ".",
"jsx": "react",
"declaration": false,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@kode/client": ["packages/client/src/index.ts"],
"@kode/client/*": ["packages/client/src/*"],
"@kode/agent": ["packages/agent/src/index.ts"],
"@kode/agent/*": ["packages/agent/src/*"],
"@kode/ai": ["packages/ai/src/index.ts"],
"@kode/ai/*": ["packages/ai/src/*"],
"@kode/config": ["packages/config/src/index.ts"],
"@kode/config/*": ["packages/config/src/*"],
"@kode/context": ["packages/context/src/index.ts"],
"@kode/context/*": ["packages/context/src/*"],
"@kode/core": ["packages/core/src/index.ts"],
"@kode/core/*": ["packages/core/src/*"],
"@kode/engine": ["packages/engine/src/index.ts"],
"@kode/engine/*": ["packages/engine/src/*"],
"@kode/host": ["packages/host/src/index.ts"],
"@kode/host/*": ["packages/host/src/*"],
"@kode/hooks": ["packages/hooks/src/index.ts"],
"@kode/hooks/*": ["packages/hooks/src/*"],
"@kode/permissions": ["packages/permissions/src/index.ts"],
"@kode/permissions/*": ["packages/permissions/src/*"],
"@kode/protocol": ["packages/protocol/src/index.ts"],
"@kode/protocol/*": ["packages/protocol/src/*"],
"@kode/runtime": ["packages/runtime/src/index.ts"],
"@kode/runtime/*": ["packages/runtime/src/*"],
"@kode/tool-interface": ["packages/tool-interface/src/index.ts"],
"@kode/tool-interface/*": ["packages/tool-interface/src/*"],
"@kode/tools": ["packages/tools/src/index.ts"],
"@kode/tools/*": ["packages/tools/src/*"],
"#config": ["packages/config/src/index.ts"],
"#config/*": ["packages/config/src/*"],
"#client": ["packages/client/src/index.ts"],
"#client/*": ["packages/client/src/*"],
"#core": ["packages/core/src/index.ts"],
"#core/*": ["packages/core/src/*"],
"#daemon": ["apps/server/src/index.ts"],
"#daemon/*": ["apps/server/src/*"],
"#cli-commands": ["apps/cli/src/commands/registry.ts"],
"#cli-commands/*": ["apps/cli/src/commands/*"],
"#cli-services/*": ["apps/cli/src/services/*"],
"#cli-utils/*": ["apps/cli/src/utils/*"],
"#host-acp": ["apps/server/src/acp/index.ts"],
"#host-acp/*": ["apps/server/src/acp/*"],
"#host-cli": ["apps/cli/src/entrypoints/cli/cliParser.tsx"],
"#host-cli/*": ["apps/cli/src/*"],
"#host-mcp": ["packages/core/src/mcp/index.ts"],
"#host-mcp/*": ["packages/core/src/mcp/*"],
"#protocol": ["packages/protocol/src/index.ts"],
"#protocol/*": ["packages/protocol/src/*"],
"#runtime": ["packages/runtime/src/index.ts"],
"#runtime/*": ["packages/runtime/src/*"],
"#tool-interface": ["packages/tool-interface/src/index.ts"],
"#tool-interface/*": ["packages/tool-interface/src/*"],
"#tools": ["packages/tools/src/index.ts"],
"#tools/*": ["packages/tools/src/*"],
"#ui-ink/*": ["apps/cli/src/ui/*"]
},
"types": ["bun-types", "node"],
"allowSyntheticDefaultImports": true,
"noEmitOnError": false,
"ignoreDeprecations": "6.0",
"useUnknownInCatchVariables": false,
"noErrorTruncation": true,
"noEmit": false,
"skipDefaultLibCheck": true,
"isolatedModules": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"plugins": [
{
"transform": "ts-transform-define",
"type": "config",
"config": {
"MACRO": "packages/core/src/constants/macros.ts"
}
}
]
},
"include": ["packages/**/*", "apps/**/*"],
"exclude": ["node_modules", "dist", "apps/**/dist", "packages/**/dist"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext"
}
}
}