Shumiland/tsconfig.payload.json
Vadym Samoilenko 03c7640874
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions
feat(migrations): add Payload migrator infrastructure
Add Dockerfile.migrator (node:22-alpine + full source) and
docker-compose.prod.yml `migrate` service (profile: tools) so
migrations can be generated and applied on the server without
Node.js v26/tsx compatibility issues.

Workflow:
  # generate migration:
  docker compose --profile tools run --rm migrate migrate:create --name <desc>
  # apply pending migrations:
  docker compose --profile tools run --rm migrate

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-13 17:45:21 +01:00

7 lines
120 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"moduleResolution": "node16",
"module": "node16"
}
}