Refactor song polling logic for adaptive delays and add tsconfig.json for TypeScript configuration
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m23s

This commit is contained in:
Cameron Redmore 2025-08-08 17:59:21 +01:00
parent 6714a4763a
commit 84f9502b4a
No known key found for this signature in database
2 changed files with 66 additions and 31 deletions

21
tsconfig.json Normal file
View file

@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"types": [
"bun-types",
"vite/client"
],
"jsx": "react-jsx",
"allowJs": true,
"resolveJsonModule": true
},
"include": [
"src",
"vite.config.*"
]
}