remove prettier

This commit is contained in:
Joe Arndt 2026-02-07 21:58:23 -06:00
parent ccc6540ae8
commit d7ad5828af
5 changed files with 20 additions and 17 deletions

View file

@ -1,9 +1,22 @@
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { MerchantsModule } from './merchants/merchants.module';
import { TypeOrmModule } from '@nestjs/typeorm';
// const config: SqliteConnectionOptions = {
// type: "sqlite",
// database: "../db",
// entities: [Post],
// synchronize: true
// };
@Module({
imports: [MerchantsModule],
imports: [
MerchantsModule,
TypeOrmModule.forRoot({
})
],
controllers: [AppController],
providers: []
})