Node newbie. I want to have Node's lite-server use a parent folder of my app as the http root, so that my app code can be saved within a subfolder from the html:
- /index.html -- want lite-server to serve this
- /js/angularApp/package.json -- location of my Node app and node_modules folder
Perhaps a command-line argument when running lite-server? I'm using a tutorial package.json
containing a defined cli script "start":
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
Thanks for tips,
Ted