remove prettier
This commit is contained in:
parent
ccc6540ae8
commit
d7ad5828af
5 changed files with 20 additions and 17 deletions
|
|
@ -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: []
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue