Player Client and Visual Enhancements

- Redesigned audio player bar to be mobile-friendly
 - Added unloading for track switching (needs to be fixed)
 - Added IsLoading status so loading spinner isn't hanging around when it shouldn't be
 - Normalized styles with scoped files (will further reduce)
 - Layout Cleanup
 - EF fixes (migrations now function for deployment)
 - deploy script updates (new dedicated host)
This commit is contained in:
daniel-c-harvey
2025-09-12 20:37:17 -04:00
parent 73d4b0a9c5
commit 9ac2c9182a
31 changed files with 763 additions and 179 deletions
+9 -5
View File
@@ -1,20 +1,24 @@
{
{
"compilerOptions": {
"target": "es2016",
"module": "ES6", // or "ESNext"
"target": "ESNext",
"module": "ESNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"outDir": "wwwroot/js"
},
"include": [
"**/*.ts"
"Interop/**/*.ts"
],
"exclude": [
"node_modules",
"bin/**/*",
"obj/**/*"
"obj/**/*",
"publish/**/*"
]
}