Refactors all-day event handling to enhance user experience. Introduces dynamic height animation for all-day event rows, adapting to the number of overlapping events. This ensures efficient use of screen space and prevents unnecessary scrolling. Additionally, events now store all relevant data, and the header height is checked and animated after navigation. The previous HeaderRenderer.ts file has been refactored.
24 lines
No EOL
492 B
JSON
24 lines
No EOL
492 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"outDir": "./wwwroot/js",
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"inlineSourceMap": false,
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"js"
|
|
]
|
|
} |