feat: add opencode container example connecting to sandbox agent

This commit is contained in:
Nathan Flurry 2026-02-06 12:54:32 -08:00
parent a7b3881099
commit 2b3e8914fc
6 changed files with 174 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
}