10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
|
|
/**
|
||
|
|
* Plugin configuration for Claude Code hooks execution
|
||
|
|
* Contains settings for hook command execution (zsh, etc.)
|
||
|
|
*/
|
||
|
|
|
||
|
|
export const DEFAULT_CONFIG = {
|
||
|
|
forceZsh: true,
|
||
|
|
zshPath: "/bin/zsh",
|
||
|
|
}
|