TypeORM v0.2.6 Node.js v10.11.0 TypeORMのmigrationを使うため、公式ドキュメントを参考にrootにormconfig.jsを置いてDB情報を設定 module.exports = { type: 'postgres', host: 'localhost', port: 5432, database: 'hogehoge', username: 'hogehoge', password: 'hogehoge', entities: ["build/server/database/entities/*.js"], // <- ビルドされたJSファイルを参照している subscribers: [], migrations: ['migrations/*'], cli: { migrationsDir: 'migrations', }, };