- Add .gitignore for node_modules and dist - Relax TypeScript strictness for incremental fixes - Install @types/pg Note: 505 errors pending - requires ServiceResult type refactor Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
766 B
JSON
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"]
|
|
}
|