mirror of
https://github.com/cline/cline.git
synced 2026-09-21 13:21:23 +08:00
* Move the apps to the root dir * Update all references from sdk/apps/ to apps/ * Update dependencies * Install bun types * Fix types * Fix types * Fix linter * Ingore apps from vscode * Fix security warning * Fix windows install * Enable windows dev mode * Revert "Enable windows dev mode" This reverts commita46c99282e. * Revert "Ingore apps from vscode" This reverts commit47f7b265d2. * Revert "Fix windows install" This reverts commit1dabba1556. * update the repo root * fix root dir * fix path * fix other path * Fix unrelated changes * fix: address apps move follow-up blockers (#11228) * fix: update root app command paths * fix: include moved apps in root checks * fix: clean up moved app path references --------- Co-authored-by: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com>
24 lines
832 B
JSON
24 lines
832 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@cline/agents": ["../../../sdk/packages/agents/src/index.ts"],
|
|
"@cline/core": ["../../../sdk/packages/core/src/index.ts"],
|
|
"@cline/core/hub": ["../../../sdk/packages/core/src/hub/index.ts"],
|
|
"@cline/llms": ["../../../sdk/packages/llms/src/index.ts"],
|
|
"@cline/shared": ["../../../sdk/packages/shared/src/index.ts"],
|
|
"@cline/shared/storage": [
|
|
"../../../sdk/packages/shared/src/storage/index.ts"
|
|
],
|
|
"@cline/shared/db": ["../../../sdk/packages/shared/src/db/index.ts"],
|
|
"@cline/shared/*": [
|
|
"../../../sdk/packages/shared/src/*",
|
|
"../../../sdk/packages/shared/src/*/index.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": ["sidecar/**/*.ts", "scripts/**/*.ts", "global.d.ts", "bun.mts"],
|
|
"exclude": ["node_modules", "webview"]
|
|
}
|