mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 21:11:18 +00:00
User-facing name is now OpenClaw (the system speaks); internal code name is system-agent. Gateway methods crestodian.* -> openclaw.chat/openclaw.setup.*, agent tool -> openclaw, reserved agent ids openclaw + retired crestodian. openclaw setup routes: onboarding flags -> onboard, -m/--yes -> system agent, bare configured interactive -> OpenClaw chat, unconfigured -> onboarding. Hidden crestodian CLI and /crestodian TUI aliases kept; docs moved to docs/cli/openclaw.md with redirect stub. macOS/Android strings in lockstep. Refs #107237
21 lines
799 B
JSON
21 lines
799 B
JSON
{
|
|
"extends": "./tsconfig.test.json",
|
|
"compilerOptions": {
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"tsBuildInfoFile": ".artifacts/tsgo-cache/test-root.tsbuildinfo"
|
|
},
|
|
"include": ["../../test/**/*", "../../src/**/*.d.ts", "../../packages/**/*.d.ts"],
|
|
"exclude": [
|
|
"../../node_modules",
|
|
"../../dist",
|
|
"../../**/dist/**",
|
|
"../../test/fixtures/**",
|
|
// These Docker E2E clients statically import built dist/** artifacts and are
|
|
// validated by their Docker lanes, so they cannot join this source-only program
|
|
// (same rationale as the scripts/e2e exclusion in tsconfig.scripts.json).
|
|
"../../test/e2e/qa-lab/runtime/system-agent-first-run-docker-client.ts",
|
|
"../../test/e2e/qa-lab/runtime/agent-bundle-mcp-tools-docker-client.ts"
|
|
]
|
|
}
|