Files
cline/sdk/tsconfig.json
T
BeeandBarreiroT a91e9f1caf refactor: promote remote-config primitives from enterprise (#65)
* feat: promote remote-config primitives from enterprise

Move remote-config schemas, managed instruction materialization, blob upload metadata, and OpenTelemetry config normalization into @cline/shared so managed configuration can be reused without an enterprise package dependency. Update architecture guidance and runtime coverage for rule/workflow materialization.

* patches

---------

Co-authored-by: BarreiroT <tomasmbarreiroi@gmail.com>
2026-05-08 23:19:57 +02:00

53 lines
1.6 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"@cline/agents": ["./packages/agents/src/index.ts"],
"@cline/agents/*": [
"./packages/agents/src/*",
"./packages/agents/src/*/index.ts"
],
"@cline/core": ["./packages/core/src/index.ts"],
"@cline/core/hub": ["./packages/core/src/hub/index.ts"],
"@cline/core/hub/daemon-entry": [
"./packages/core/src/hub/daemon/entry.ts"
],
"@cline/core/telemetry": [
"./packages/core/src/services/telemetry/index.ts"
],
"@cline/core/*": [
"./packages/core/src/*",
"./packages/core/src/*/index.ts"
],
"@cline/llms": ["./packages/llms/src/index.ts"],
"@cline/llms/browser": ["./packages/llms/src/index.browser.ts"],
"@cline/sdk": ["./packages/sdk/src/index.ts"],
"@cline/shared": ["./packages/shared/src/index.ts"],
"@cline/shared/automation": ["./packages/shared/src/automation/index.ts"],
"@cline/shared/browser": ["./packages/shared/src/index.browser.ts"],
"@cline/shared/db": ["./packages/shared/src/db/index.ts"],
"@cline/shared/storage": ["./packages/shared/src/storage/index.ts"],
"@cline/shared/types": ["./packages/shared/src/types/index.ts"],
"@cline/shared/*": [
"./packages/shared/src/*",
"./packages/shared/src/*/index.ts"
]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/bun.mts"],
"exclude": [
"node_modules",
"**/dist/**",
"**/.next/**",
"packages/gateway/**"
]
}