Build out and push automatic report generation, remove emailing of every report indiidially

This commit is contained in:
Fred Boniface
2025-07-10 12:41:41 +01:00
parent bc642ce0a8
commit 997c758403
19 changed files with 507 additions and 338 deletions

View File

@@ -1,14 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"removeComments": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"]
}