- Refactored package.json to consolidate Jest configuration for improved readability. - Cleaned up launch.json by removing unnecessary whitespace for better formatting. - Updated CronService to refine service disabling logic based on recent activity, ensuring more accurate service management. - Enhanced MeetingRoom and WorkshopMeetingRoom schemas with consistent formatting and improved field descriptions for clarity. - Improved error handling in MeetingRoom schema to provide clearer feedback for unauthorized access and missing resources. - Updated pothos.generated.ts to reflect recent schema changes, ensuring type consistency across the application. These changes enhance the overall structure and maintainability of the codebase, improving service management and user experience.
26 lines
831 B
JSON
26 lines
831 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Attach by Process ID",
|
|
"processId": "${command:PickProcess}",
|
|
"request": "attach",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"type": "node"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"runtimeExecutable": "C:\\Users\\AliensVN\\AppData\\Roaming\\fnm\\node-versions\\v24.0.0-nightly202412106c03beba46\\installation\\node.exe",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"cwd": "${workspaceFolder}",
|
|
"program": "${file}",
|
|
"outFiles": ["${workspaceFolder}/**/*.js"]
|
|
}
|
|
]
|
|
}
|