Create new Basic Express application (Node.js or TypeScript, same behavior)
Put breakpoint in routes/index.js on line 7:
```
res.render('index', { title: 'Express' });
```
Press F5 to start debugging
Breakpoint should be hit
Press F5
Result: It's going to break again in another index.js, then again, and again. Always on/around line 7.
Put breakpoint in routes/index.js on line 7:
```
res.render('index', { title: 'Express' });
```
Press F5 to start debugging
Breakpoint should be hit
Press F5
Result: It's going to break again in another index.js, then again, and again. Always on/around line 7.