mirror of
https://github.com/unraid/api.git
synced 2026-02-04 23:19:04 -06:00
- Added optional properties `expand`, `duration`, and `max` to the Notify interface. - Updated NotificationSettings class to include validation for new properties. - Modified the NotificationsService to parse and return the new settings. - Adjusted the toaster configuration in the app to utilize the new settings. - Updated GraphQL query to fetch the new notification settings.
37 lines
854 B
JSON
37 lines
854 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"types": ["./types/window"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowArbitraryExtensions": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Paths */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"~/*": ["./src/*"],
|
|
"~/types/*": ["./types/*"],
|
|
"~~/*": ["./*"],
|
|
"#imports": ["./.nuxt/imports"],
|
|
"#components": ["./.nuxt/components"]
|
|
}
|
|
}
|
|
}
|