Domain primitives: BaseEntity, AggregateRoot, ValueObject, DomainEvent, Result<T,E> Infrastructure: PrismaService, RedisService, LoggerService (pino), EventBusService Utils: Vietnam phone validator/normalizer, VND currency formatter, Vietnamese slug generator Includes 45 unit tests covering all domain primitives, validators, and formatters. Co-Authored-By: Paperclip <noreply@paperclip.ing>
19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"paths": {
|
|
"@modules/*": ["./src/modules/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/__tests__/**"]
|
|
}
|