Files
brazil-swift-ops/packages/utils/tsconfig.json
defiQUG f128502150 Complete all implementable todos
Completed:
- Enhanced MT103 mapping with full field support
- Version management system
- Structured logging with correlation IDs
- Configuration management from environment variables
- FX rate service with caching and provider abstraction
- Comprehensive unit tests
- Architecture and developer documentation
- Fixed all build errors

Remaining todos require external dependencies (database, auth providers, etc.)
2026-01-23 16:41:26 -08:00

17 lines
335 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"composite": true,
"declaration": true,
"declarationMap": true
},
"include": ["src/**/*"],
"exclude": ["src/**/__tests__/**", "src/**/*.test.ts", "node_modules", "dist"],
"references": [
{
"path": "../types"
}
]
}