-
Notifications
You must be signed in to change notification settings - Fork 679
Expand file tree
/
Copy pathtsconfig.json
More file actions
127 lines (127 loc) · 5.05 KB
/
tsconfig.json
File metadata and controls
127 lines (127 loc) · 5.05 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
117
118
119
120
121
122
123
124
125
126
127
{
"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,
"outDir": "dist",
"rootDir": "src",
"jsx": "react",
"declaration": false,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@components": ["src/ui/components"],
"@components/*": ["src/ui/components/*"],
"@commands": ["src/commands/index.ts"],
"@commands/*": ["src/commands/*"],
"@utils": ["src/utils"],
"@utils/*": ["src/utils/*"],
"@constants": ["src/constants"],
"@constants/*": ["src/constants/*"],
"@hooks": ["src/ui/hooks"],
"@hooks/*": ["src/ui/hooks/*"],
"@app/*": ["src/app/*"],
"@services": ["src/services"],
"@services/customCommands": ["src/services/plugins/customCommands.ts"],
"@services/fileFreshness": ["src/services/system/fileFreshness.ts"],
"@services/gpt5ConnectionTest": ["src/services/ai/gpt5ConnectionTest.ts"],
"@services/kodeContext": ["src/services/context/kodeContext.ts"],
"@services/llm": ["src/services/ai/llm.ts"],
"@services/llmConstants": ["src/services/ai/llmConstants.ts"],
"@services/llmLazy": ["src/services/ai/llmLazy.ts"],
"@services/mentionProcessor": ["src/services/context/mentionProcessor.ts"],
"@services/mcpCliUtils": ["src/services/mcp/cli-utils.ts"],
"@services/mcpClient": ["src/services/mcp/index.ts"],
"@services/modelAdapterFactory": ["src/services/ai/modelAdapterFactory.ts"],
"@services/notifier": ["src/services/ui/notifier.ts"],
"@services/oauth": ["src/services/auth/oauth.ts"],
"@services/openai": ["src/services/ai/openai.ts"],
"@services/outputStyles": ["src/services/ui/outputStyles.ts"],
"@services/pluginRuntime": ["src/services/plugins/pluginRuntime.ts"],
"@services/pluginValidation": ["src/services/plugins/pluginValidation.ts"],
"@services/responseStateManager": ["src/services/ai/responseStateManager.ts"],
"@services/sentry": ["src/services/telemetry/sentry.ts"],
"@services/skillMarketplace": ["src/services/plugins/skillMarketplace.ts"],
"@services/statusline": ["src/services/ui/statusline.ts"],
"@services/systemPrompt": ["src/services/system/systemPrompt.ts"],
"@services/systemReminder": ["src/services/system/systemReminder.ts"],
"@services/vcr": ["src/services/system/vcr.ts"],
"@services/*": ["src/services/*"],
"@services/adapters/*": ["src/services/ai/adapters/*"],
"@screens": ["src/ui/screens"],
"@screens/*": ["src/ui/screens/*"],
"@tools": ["src/tools/index.ts"],
"@tools/*": ["src/tools/*"],
"@tools/BashTool/*": ["src/tools/system/BashTool/*"],
"@tools/KillShellTool/*": ["src/tools/system/KillShellTool/*"],
"@tools/TaskOutputTool/*": ["src/tools/system/TaskOutputTool/*"],
"@tools/FileReadTool/*": ["src/tools/filesystem/FileReadTool/*"],
"@tools/FileWriteTool/*": ["src/tools/filesystem/FileWriteTool/*"],
"@tools/FileEditTool/*": ["src/tools/filesystem/FileEditTool/*"],
"@tools/NotebookReadTool/*": ["src/tools/filesystem/NotebookReadTool/*"],
"@tools/NotebookEditTool/*": ["src/tools/filesystem/NotebookEditTool/*"],
"@tools/MultiEditTool/*": ["src/tools/filesystem/MultiEditTool/*"],
"@tools/GlobTool/*": ["src/tools/filesystem/GlobTool/*"],
"@tool": ["src/core/tools/tool.ts"],
"@kode-types": ["src/types"],
"@kode-types/*": ["src/types/*"],
"@context": ["src/context/index.ts"],
"@context/*": ["src/context/*"],
"@history": ["src/app/history.ts"],
"@costTracker": ["src/core/costTracker.ts"],
"@permissions": ["src/core/permissions/index.ts"],
"@query": ["src/app/query.ts"],
"@messages": ["src/app/messages.ts"],
"*": ["node_modules/*", "src/types/*", "src/*"]
},
"types": ["bun-types", "node"],
"allowSyntheticDefaultImports": true,
"noEmitOnError": false,
"ignoreDeprecations": "5.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": "src/constants/macros.ts"
}
}
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext"
}
}
}