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>
7 lines
120 B
JSON
7 lines
120 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "node16",
|
|
"module": "node16"
|
|
}
|
|
}
|