chore(venice): add package boundary tsconfig

This commit is contained in:
Vincent Koc
2026-04-07 07:55:28 +01:00
parent 858b194095
commit c4dcaf91cd
2 changed files with 11 additions and 0 deletions

View File

@@ -4,6 +4,9 @@
"private": true,
"description": "OpenClaw Venice provider plugin",
"type": "module",
"devDependencies": {
"@openclaw/plugin-sdk": "workspace:*"
},
"openclaw": {
"extensions": [
"./index.ts"

View File

@@ -0,0 +1,8 @@
{
"extends": "../tsconfig.package-boundary.base.json",
"compilerOptions": {
"rootDir": "."
},
"include": ["./*.ts", "./src/**/*.ts"],
"exclude": ["./**/*.test.ts", "./dist/**", "./node_modules/**"]
}