mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-31 13:18:36 +00:00
* refactor: extract gateway client package * chore: drop generated gateway package artifacts * refactor: move gateway protocol package * refactor: remove old gateway protocol tree * test: keep auth compat split in run mode * test: expose gateway wrapper options for internals * fix: watch moved gateway package sources * test: normalize slash command import guard * chore: teach knip gateway package entries * ci: route gateway client package checks * fix: reuse ipaddr for gateway client hosts * fix: sync gateway protocol usage schema
57 lines
2.3 KiB
JSON
57 lines
2.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023", "ScriptHost"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2023",
|
|
"types": ["node"],
|
|
"useDefineForClassFields": false,
|
|
"verbatimModuleSyntax": true,
|
|
"paths": {
|
|
"openclaw/extension-api": ["./src/extensionAPI.ts"],
|
|
"openclaw/plugin-sdk": ["./src/plugin-sdk/index.ts"],
|
|
"openclaw/plugin-sdk/*": ["./src/plugin-sdk/*.ts"],
|
|
"@openclaw/agent-core": ["./packages/agent-core/src/index.ts"],
|
|
"@openclaw/agent-core/*": ["./packages/agent-core/src/*"],
|
|
"@openclaw/gateway-client": ["./packages/gateway-client/src/index.ts"],
|
|
"@openclaw/gateway-client/*": ["./packages/gateway-client/src/*"],
|
|
"@openclaw/gateway-protocol": ["./packages/gateway-protocol/src/index.ts"],
|
|
"@openclaw/gateway-protocol/client-info": [
|
|
"./packages/gateway-protocol/src/client-info.ts"
|
|
],
|
|
"@openclaw/gateway-protocol/connect-error-details": [
|
|
"./packages/gateway-protocol/src/connect-error-details.ts"
|
|
],
|
|
"@openclaw/gateway-protocol/schema": ["./packages/gateway-protocol/src/schema.ts"],
|
|
"@openclaw/gateway-protocol/startup-unavailable": [
|
|
"./packages/gateway-protocol/src/startup-unavailable.ts"
|
|
],
|
|
"@openclaw/gateway-protocol/version": ["./packages/gateway-protocol/src/version.ts"],
|
|
"@openclaw/gateway-protocol/*": ["./packages/gateway-protocol/src/*"],
|
|
"@openclaw/sdk": ["./packages/sdk/src/index.ts"],
|
|
"@openclaw/plugin-sdk": ["./src/plugin-sdk/index.ts"],
|
|
"@openclaw/plugin-sdk/*": ["./src/plugin-sdk/*.ts"],
|
|
"openclaw/plugin-sdk/account-id": ["./src/plugin-sdk/account-id.ts"],
|
|
"@openclaw/*": ["./extensions/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "ui/**/*", "extensions/**/*", "packages/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/dist/**"]
|
|
}
|