23 lines
422 B
JSON
23 lines
422 B
JSON
{
|
|
"$schema": "https://opencode.ai/config.json",
|
|
"command": {
|
|
"build": {
|
|
"template": "!just build",
|
|
"description": "Build the project"
|
|
},
|
|
"lint": {
|
|
"template": "!just lint",
|
|
"description": "Run linter / typecheck"
|
|
},
|
|
"test": {
|
|
"template": "!just test",
|
|
"description": "Run tests"
|
|
}
|
|
},
|
|
"permission": {
|
|
"edit": {
|
|
"src/wapp/**": "deny"
|
|
}
|
|
}
|
|
}
|