fix: fix error user dont get updated targetWorkingHours

also perform code formatting and cleanup
This commit is contained in:
Patryk Hegenberg 2026-01-16 11:25:34 +01:00
parent 3fadb6d86d
commit 8fe3d71dde
21 changed files with 2348 additions and 1235 deletions

View file

@ -17,7 +17,9 @@
*/
"sourceMap": true,
"esModuleInterop": true,
"types": ["vite/client"],
"types": [
"vite/client"
],
"skipLibCheck": true,
/**
* Typecheck JS in `.svelte` and `.js` files by default.
@ -29,5 +31,9 @@
* Use global.d.ts instead of compilerOptions.types
* to avoid limiting type declarations.
*/
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
"include": [
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.svelte"
]
}