From b1ade6a56c607cc04e245187d82c56bb3f3eab66 Mon Sep 17 00:00:00 2001 From: Dmitriy <118644+dmytro-kerest@users.noreply.github.com> Date: Wed, 9 Oct 2019 20:40:57 +0300 Subject: [PATCH] Allow node to run build Allow node to run built entities, migrations and subscribers --- ormconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ormconfig.json b/ormconfig.json index 2f0f5de..ced9e16 100644 --- a/ormconfig.json +++ b/ormconfig.json @@ -4,17 +4,17 @@ "synchronize": true, "logging": false, "entities": [ - "src/entity/**/*.ts" + "build/entity/**/*.js" ], "migrations": [ - "src/migration/**/*.ts" + "build/migration/**/*.js" ], "subscribers": [ - "src/subscriber/**/*.ts" + "build/subscriber/**/*.js" ], "cli": { "entitiesDir": "src/entity", "migrationsDir": "src/migration", "subscribersDir": "src/subscriber" } -} \ No newline at end of file +}