Description he error you're encountering is likely due to TypeScript syntax being used in a JavaScript file. In the provided server.js code, the any type annotations are TypeScript-specific and should not be used in plain JavaScript. You can simply remove the :any type annotations, as they are unnecessary in JavaScript. Here's the corrected version of your server.js file:

Drag