package.json type=module, tsconfig module/moduleResolution=NodeNext, target es2022, explicit .js on all relative imports. Center: jsonwebtoken & bcryptjs switched to default imports (ESM/CJS interop). Verified: builds, boots, full auth + plugin round-trip work under ESM. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { AuditLog } from '../entities/audit-log.entity.js';
|
|
import { AuditService } from './audit.service.js';
|
|
|
|
@Global()
|
|
@Module({
|
|
imports: [TypeOrmModule.forFeature([AuditLog])],
|
|
providers: [AuditService],
|
|
exports: [AuditService],
|
|
})
|
|
export class AuditModule {}
|