Compare commits

...

1 Commits

Author SHA1 Message Date
colem 57821ba227 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.
2026-07-31 11:00:46 -05:00
+12 -1
View File
@@ -93,6 +93,11 @@
"Authorization": "Bearer {env:ZAI_API_KEY}",
},
},
"playwright": {
"type": "local",
"command": ["npx", "@playwright/mcp@latest"],
"enabled": true,
},
"ibmi-server": {
"type": "local",
"command": [
@@ -113,7 +118,13 @@
},
},
"watcher": {
"ignore": ["node_modules/**", ".git/**", "dist/**", "**/.venv/**", "**/target/**"],
"ignore": [
"node_modules/**",
".git/**",
"dist/**",
"**/.venv/**",
"**/target/**",
],
},
"lsp": true,
"formatter": true,