Files
GMW/services/discord-gateway/moon.yml
T
2026-06-02 19:04:49 +07:00

49 lines
848 B
YAML

# Discord Gateway service - handles message capture, voice recording, and AI moderation
language: typescript
tasks:
dev:
command: tsx watch src/index.ts
preset: server
build:
command: tsc
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
outputs:
- dist
typecheck:
command: tsc --noEmit
options:
runFromWorkspaceRoot: false
inputs:
- src
- tsconfig.json
lint:
command: biome check --diagnostic-level=error .
options:
runFromWorkspaceRoot: false
inputs:
- src
format:
command: biome format --write .
options:
runFromWorkspaceRoot: false
inputs:
- src
test:
command: vitest run
options:
runFromWorkspaceRoot: false
inputs:
- src
- tests
- tsconfig.json