The new templates (ASP.NET Core 2.2) simply pass through to nodejs, so everything you set up is same as w/o ASP.NET Core.
You'll know if you use the new or old templates by looking in your Startup.cs. If there is an app.UseSpa(spa => { ... }); line you're using the new packages and SPA approach, where ASP.NET Core simply pipes everything to the nodejs server that starts with the application.
Look in your package.json file in the scripts section, there should be a start section with the commands (and parameters) that get run when you start the application, something like
"scripts": {
"ng": "ng",
"start": "ng serve --extract-css",
"build": "ng build --extract-css",
"build:ssr": "npm run build -- --app=ssr --output-hashing=media",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
package.jsonfile in thescriptssection, there should be astartsection with the commands (and parameters) that get run when you start the application