build(opencode): add playwright mcp server configuration

Register the @playwright/mcp server in opencode.jsonc and reformat
the watcher ignore list across multiple lines for readability.
This commit is contained in:
2026-07-31 11:00:46 -05:00
parent 4f6136e88c
commit 57821ba227
+12 -1
View File
@@ -93,6 +93,11 @@
"Authorization": "Bearer {env:ZAI_API_KEY}", "Authorization": "Bearer {env:ZAI_API_KEY}",
}, },
}, },
"playwright": {
"type": "local",
"command": ["npx", "@playwright/mcp@latest"],
"enabled": true,
},
"ibmi-server": { "ibmi-server": {
"type": "local", "type": "local",
"command": [ "command": [
@@ -113,7 +118,13 @@
}, },
}, },
"watcher": { "watcher": {
"ignore": ["node_modules/**", ".git/**", "dist/**", "**/.venv/**", "**/target/**"], "ignore": [
"node_modules/**",
".git/**",
"dist/**",
"**/.venv/**",
"**/target/**",
],
}, },
"lsp": true, "lsp": true,
"formatter": true, "formatter": true,