From 5a3293d400f5c7df307d5bbfda156ae685e26c67 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Tue, 7 Apr 2026 08:17:26 +0100 Subject: [PATCH] chore(anthropic-vertex): add package boundary tsconfig --- extensions/anthropic-vertex/package.json | 3 +++ extensions/anthropic-vertex/tsconfig.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 extensions/anthropic-vertex/tsconfig.json diff --git a/extensions/anthropic-vertex/package.json b/extensions/anthropic-vertex/package.json index 59606647ee8..8dc5cce2ff4 100644 --- a/extensions/anthropic-vertex/package.json +++ b/extensions/anthropic-vertex/package.json @@ -4,6 +4,9 @@ "private": true, "description": "OpenClaw Anthropic Vertex provider plugin", "type": "module", + "devDependencies": { + "@openclaw/plugin-sdk": "workspace:*" + }, "openclaw": { "extensions": [ "./index.ts" diff --git a/extensions/anthropic-vertex/tsconfig.json b/extensions/anthropic-vertex/tsconfig.json new file mode 100644 index 00000000000..b1eac8b8a69 --- /dev/null +++ b/extensions/anthropic-vertex/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.package-boundary.base.json", + "compilerOptions": { + "rootDir": "." + }, + "include": ["./*.ts", "./src/**/*.ts"], + "exclude": ["./**/*.test.ts", "./dist/**", "./node_modules/**"] +}