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

28 lines
499 B
YAML

type: application
language: typescript
tasks:
dev:
command: bun run dev
local: true
build:
command: bun build src/index.ts --outdir dist --target bun
deps:
- shared:build
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts
outputs:
- dist
typecheck:
command: bun run typecheck
deps:
- shared:typecheck
inputs:
- src/**/*
- package.json
- tsconfig.json
- drizzle.config.ts