cbe51b9343
- Added BankAccountsController, BankAccountsService, and related DTOs for managing bank accounts. - Implemented BankBranchesController, BankBranchesService, and related DTOs for managing bank branches. - Created BanksController and BanksService for retrieving bank information. - Integrated Prisma for database operations across all modules. - Added response mapping for consistent API responses.
22 lines
431 B
JSON
22 lines
431 B
JSON
{
|
|
// Prettier for TS and JS
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
// Prisma formatting
|
|
"[prisma]": {
|
|
"editor.defaultFormatter": "Prisma.prisma",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"cSpell.words": [
|
|
"autoincrement",
|
|
"Cardex",
|
|
"fkey",
|
|
"iban"
|
|
]
|
|
}
|