chore(opencode-sandbox): add SSH config, git safe directory, and test setup

This commit is contained in:
2026-04-05 20:16:52 +00:00
parent 299de83f2f
commit 30ccdab8af
6 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"types": ["node", "jest"]
},
"include": ["tests/**/*"],
"exclude": ["node_modules"]
}