- Updated biome.json to include "graphql.d.ts" in the ignored files list. - Updated subproject commit reference in epess-database to the latest version. - Removed unused script from package.json and streamlined module file extensions in tsconfig.json. - Consolidated exclude patterns in tsconfig.build.json for clarity. - Refactored imports across multiple schema files for consistency and improved readability. - Enhanced various schema files by ensuring proper import order and removing redundant code. - Improved error handling and data integrity checks in several service and schema files.
22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
import { Module } from '@nestjs/common'
|
|
import { ConfigModule } from '@nestjs/config'
|
|
import { ClerkModule } from './Clerk/clerk.module'
|
|
import { CronModule } from './Cron/cron.module'
|
|
import { GraphqlModule } from './Graphql/graphql.module'
|
|
import { MailModule } from './Mail/mail.module'
|
|
import { RestfulModule } from './Restful/restful.module'
|
|
|
|
@Module({
|
|
imports: [
|
|
ConfigModule.forRoot({
|
|
isGlobal: true,
|
|
}),
|
|
ClerkModule,
|
|
MailModule,
|
|
GraphqlModule,
|
|
RestfulModule,
|
|
CronModule,
|
|
],
|
|
})
|
|
export class AppModule {}
|