Files
vscode/.github/hooks/worktree.json
T
2026-02-17 14:14:39 +00:00

22 lines
319 B
JSON

{
"version": 1,
"hooks": {
"sessionStart": [
{
"type": "command",
"bash": "npm install",
"powershell": "npm install",
"timeoutSec": 120
}
],
"sessionEnd": [
{
"type": "command",
"bash": "npm run compile",
"powershell": "npm run compile",
"timeoutSec": 120
}
]
}
}