mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 03:31:10 +00:00
29 lines
1.1 KiB
JSON
29 lines
1.1 KiB
JSON
{
|
|
"extends": "../tsconfig.package-boundary.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"openclaw/extension-api": ["../../src/extensionAPI.ts"],
|
|
"openclaw/plugin-sdk": ["../../dist/plugin-sdk/index.d.ts"],
|
|
"openclaw/plugin-sdk/*": ["../../dist/plugin-sdk/*.d.ts"],
|
|
"@openclaw/*.js": ["../../packages/plugin-sdk/dist/extensions/*.d.ts", "../*"],
|
|
"@openclaw/*": ["../*"],
|
|
"@openclaw/plugin-sdk/*": ["../../dist/plugin-sdk/*.d.ts"],
|
|
"@openclaw/anthropic-vertex/api.js": ["./.boundary-stubs/anthropic-vertex-api.d.ts"],
|
|
"@openclaw/ollama/api.js": ["./.boundary-stubs/ollama-api.d.ts"],
|
|
"@openclaw/ollama/runtime-api.js": ["./.boundary-stubs/ollama-runtime-api.d.ts"],
|
|
"@openclaw/speech-core/runtime-api.js": ["./.boundary-stubs/speech-core-runtime-api.d.ts"]
|
|
}
|
|
},
|
|
"include": ["./*.ts", "./src/**/*.ts"],
|
|
"exclude": [
|
|
"./**/*.test.ts",
|
|
"./dist/**",
|
|
"./node_modules/**",
|
|
"./src/test-support/**",
|
|
"./src/**/*test-helpers.ts",
|
|
"./src/**/*test-harness.ts",
|
|
"./src/**/*test-support.ts"
|
|
]
|
|
}
|