I notice that there's no Intellisense on Express's req and res (because the types are unknown) in this context:-
var app = express();
app.get('/', function (req, res) {
...
});
Should there be? Or is that too big an ask, given the way the Express is structured?