I've inherited an AngularJS frontend. It has no VS solution, project, nothing like that. I prefer VS as an editor, even without the frills of Intellisense (this is a pure JS AngularJS). I can still open the project folder in VS, edit, git, and boot it up via the command line: C:\dev\project> npm start
But I'd love it if there were a way to attach breakpoints and debug through VS. I haven't found such a way, as the path of least resistance has now become starting new ASP.NET/Angular projects in VS with a template; but I'm working with a pure AngularJS frontend already started. Ultimately I'm looking to step debug the JS, but the first step is getting the app running.
I know the VS Code paradigm (just open into a project folder, then it uses simple json config files to work) fits this scenario better, but even then there's some assembly required to get my AngularJS running and debugging with the Chrome debugger, and if a configuration exists for VS I'd rather use that.
Please note that I can run AngularJS/ASP.NET projects in VS, but there's some basic knowledge I lack in order to open up a pure AngularJS folder and run it through VS.