1 2 3 4 5 6 7 8 9 10 11 12 13
import "reflect-metadata"; import { DataSource } from "typeorm"; import { User } from "./entity/User"; export const AppDataSource = new DataSource({ type: "sqlite", database: "database.sqlite", synchronize: true, logging: false, entities: [User], migrations: [], subscribers: [], });