erp-transportistas-backend-v2/tsconfig.json
Adrian Flores Cortes 2f76d541d2 feat: Initial backend structure for ERP Transportistas
- NestJS 10.x configuration
- TypeScript setup with path aliases
- Environment configuration template
- Integration config for GPS, PAC, Maps

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 09:51:22 -06:00

30 lines
747 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": "./src",
"paths": {
"@config/*": ["config/*"],
"@modules/*": ["modules/*"],
"@shared/*": ["shared/*"],
"@routes/*": ["routes/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}