chore: session auto-commit

This commit is contained in:
MythEclipse
2026-06-02 18:55:48 +07:00
parent de29f3d011
commit 0fa49b3613
20 changed files with 139 additions and 5580 deletions
+39
View File
@@ -0,0 +1,39 @@
# Backend service - Discord moderation monitoring
language: typescript
type: application
tasks:
dev:
command: tsx watch src/index.ts
local: true
build:
command: tsc
inputs:
- src
- tsconfig.json
outputs:
- dist
typecheck:
command: tsc --noEmit
inputs:
- src
- tsconfig.json
lint:
command: biome check --diagnostic-level=error .
inputs:
- src
format:
command: biome format --write .
inputs:
- src
test:
command: vitest run
inputs:
- src
- tests
- tsconfig.json