Files
cline/sdk/examples/tsconfig.json
T
Tomás Barreiro 220a21bdcf Move sdk/apps/ to apps/ (#11200)
* 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 commit a46c99282e.

* Revert "Ingore apps from vscode"

This reverts commit 47f7b265d2.

* Revert "Fix windows install"

This reverts commit 1dabba1556.

* 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>
2026-06-03 01:49:57 +02:00

59 lines
1.6 KiB
JSON

{
"extends": "../../apps/tsconfig.apps.json",
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"types": ["bun"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@cline/agents": ["../packages/agents/src/index.ts"],
"@cline/agents/*": [
"../packages/agents/src/*",
"../packages/agents/src/*/index.ts"
],
"@cline/cline-hub": ["./cline-hub/src/server.ts"],
"@cline/core": ["../packages/core/src/index.ts"],
"@cline/core/hub/daemon-entry": [
"../packages/core/src/hub/daemon/entry.ts"
],
"@cline/core/*": [
"../packages/core/src/*",
"../packages/core/src/*/index.ts"
],
"@cline/core/telemetry": [
"../packages/core/src/services/telemetry/index.ts"
],
"@cline/llms": ["../packages/llms/src/index.ts"],
"@cline/shared": ["../packages/shared/src/index.ts"],
"@cline/shared/storage": ["../packages/shared/src/storage/index.ts"],
"@cline/shared/db": ["../packages/shared/src/db/index.ts"],
"@cline/shared/*": [
"../packages/shared/src/*",
"../packages/shared/src/*/index.ts"
]
}
}
}