Files
zeavis-edu/apps/api/moon.yml
T

24 lines
433 B
YAML
Raw Normal View History

2026-05-22 12:25:41 +00:00
type: application
language: typescript
tasks:
dev:
command: bun run dev
local: true
build:
command: bun build src/index.ts --outdir dist --target bun
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts
outputs:
- dist
typecheck:
command: bun run typecheck
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts