9 lines
334 B
JavaScript
9 lines
334 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const typeorm_1 = require("typeorm");
|
|
typeorm_1.createConnection()
|
|
.then(async (connection) => {
|
|
console.log('base de datos configurada');
|
|
})
|
|
.catch((error) => console.log('TypeORM connection error: ', error));
|
|
//# sourceMappingURL=config.js.map
|