Unfortunately, a new version of node and angular make it hard to run server and client. in order to work just change the package.json file and you will be good to go.
line code 7 and 8 inside package.json "start": "ng serve --proxy-config ./proxy.json", "server": "ts-node -P ./server/server.tsconfig.json ./server/server.ts",
for server -> npm run server
for client -> npm start
Unfortunately, a new version of node and angular make it hard to run server and client. in order to work just change the package.json file and you will be good to go. line code 7 and 8 inside package.json
"start": "ng serve --proxy-config ./proxy.json", "server": "ts-node -P ./server/server.tsconfig.json ./server/server.ts",
for server -> npm run server for client -> npm start