cmziuk/tsconfig.json
Cameron Redmore 84f9502b4a
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m23s
Refactor song polling logic for adaptive delays and add tsconfig.json for TypeScript configuration
2025-08-08 17:59:21 +01:00

21 lines
367 B
JSON

{
"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.*"
]
}