NodeJS inlay hints
So in InteliJ older version It writes the correct param hints for the functions 
But in the newest version it's not accurate , I would like to keep using the older version but it does not support express code assistance

Please sign in to leave a comment.
Please could you share a complete, self-containing code snippet/file(s) the issue can be reproduced with?
I thought I posted this in intellij section not webstorm
anyway inlay hints is not accurate on intellij newest version with nodejs and express
I have attached the screenshots earlier
const http = require("http");
const server = http.createServer(function (req, res) {
console.log(req.url);
res.write("Hello World from Nodejs");
res.end();
});
server.listen(4000, function () {
console.log("Server running port 3000")
});
Thanks! Please vote for https://youtrack.jetbrains.com/issue/WEB-55928 to be notified when it's fixed