- Complete monorepo structure with pnpm workspaces and Turborepo - All packages implemented: types, utils, rules-engine, iso20022, treasury, risk-models, audit - React web application with TypeScript and Tailwind CSS - Full Brazil regulatory compliance (BCB requirements) - ISO 20022 message support (pacs.008, pacs.009, pain.001) - Treasury and subledger management - Risk, capital, and liquidity stress allocation - Audit logging and BCB reporting - E&O +10% uplift implementation
32 lines
1020 B
JSON
32 lines
1020 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"incremental": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@brazil-swift-ops/types": ["./packages/types/src"],
|
|
"@brazil-swift-ops/utils": ["./packages/utils/src"],
|
|
"@brazil-swift-ops/rules-engine": ["./packages/rules-engine/src"],
|
|
"@brazil-swift-ops/iso20022": ["./packages/iso20022/src"],
|
|
"@brazil-swift-ops/treasury": ["./packages/treasury/src"],
|
|
"@brazil-swift-ops/risk-models": ["./packages/risk-models/src"],
|
|
"@brazil-swift-ops/audit": ["./packages/audit/src"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
}
|