Begin implementing Joi validation on the database models

This commit is contained in:
Oliver-Akins 2025-05-20 23:43:20 -06:00
parent 64029b9508
commit 76fe473cd1
4 changed files with 116 additions and 41 deletions

11
jsconfig.json Normal file
View file

@ -0,0 +1,11 @@
{
"compilerOptions": {
"module": "ES2020",
"target": "ES2020"
},
"exclude": ["node_modules", "**/node_modules/*"],
"include": ["module/**/*"],
"typeAcquisition": {
"include": ["joi"]
}
}