Skip to content

Commit 57410a2

Browse files
committed
fix(config-service): fix tsconfig decorators and audit service import
1 parent b37426b commit 57410a2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

microservices/config-service/src/modules/audit/audit-log.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Injectable } from '@nestjs/common';
22
import { InjectRepository } from '@nestjs/typeorm';
33
import { Repository } from 'typeorm';
4-
import { AuditLog } from '../entities';
4+
import { AuditLog } from '../../entities';
55

66
@Injectable()
77
export class AuditLogService {

microservices/config-service/tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"module": "commonjs",
44
"target": "ES2021",
55
"lib": ["ES2021"],
6+
"experimentalDecorators": true,
7+
"emitDecoratorMetadata": true,
68
"declaration": true,
79
"outDir": "./dist",
810
"baseUrl": "./",

0 commit comments

Comments
 (0)