Initial setup for a cron working on the ui for various tasks

This commit is contained in:
Jaret Burkett
2025-06-17 07:43:34 -06:00
parent 1cc663a664
commit 595a6f1735
5 changed files with 709 additions and 9 deletions

15
ui/tsconfig.worker.json Normal file
View File

@@ -0,0 +1,15 @@
{
// tsconfig.worker.json
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"outDir": "dist",
"moduleResolution": "node",
"types": [
"node"
]
},
"include": [
"cron/**/*.ts"
]
}