In the upcoming lecture, we will be using an npx command to generate a tsconfig file. What is shown no longer works and will throw the following error:
npm ERR! could not determine executable to run
Instead, we need to run the following command:
npx tsc --init
Note - This will be used again in the Adding TypeScript Support to the CLI lecture.