erp-vidrio-templado-backend-v2/tsconfig.json
rckrdmrd 0628a86ec1 [ERP-VIDRIO-TEMPLADO] feat: Create backend scaffold
- package.json with Express, TypeORM, PostgreSQL dependencies
- tsconfig.json with TypeScript compiler options
- src/index.ts with health and API info endpoints
- .gitignore with standard exclusions
- Build compiles successfully

Ready for module implementation (8 modules planned)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 12:42:37 -06:00

31 lines
766 B
JSON

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