refactor: move pushover into sub package, pull config into config package

Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
2025-10-22 04:46:36 +02:00
parent a8e03e5912
commit 8984a61ec8
17 changed files with 1652 additions and 175 deletions

View File

@@ -0,0 +1,12 @@
{
"extends": "@repo/configs/tsconfig.json",
"compilerOptions": {
/* Path Aliases */
"baseUrl": "./src",
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules/**/*", "docs/**/*", "dist/**/*"]
}