Open a terminal and have typescript watch for changes in the server directory and compile them automatically.
cd server
tsc -w
Open a second terminal and start the express API server.
cd server\dist
nodemon app.js
Open a third terminal and start the development server.
cd client
npm run serve
Build out the static assets from the development environment and put it into the server/public directory
cd client
npm run build